link-stack/apps/link/pages/profile.tsx

34 lines
725 B
TypeScript
Raw Normal View History

2023-03-15 12:17:43 +00:00
import { NextPage } from "next";
2022-12-02 17:45:14 +01:00
import Head from "next/head";
import { Grid } from "@mui/material";
import { Layout } from "components/Layout";
import { ZammadWrapper } from "components/ZammadWrapper";
2023-03-15 12:17:43 +00:00
const Profile: NextPage = () => (
2022-12-02 17:45:14 +01:00
<Layout>
<Head>
<title>Link Shell</title>
</Head>
<Grid
container
spacing={0}
sx={{ height: "100%", width: "100%" }}
direction="column"
>
<Grid
item
sx={{
height: "100%",
width: "100%",
}}
>
2023-03-15 12:17:43 +00:00
<ZammadWrapper path="/#profile" hideSidebar={false} />
2022-12-02 17:45:14 +01:00
</Grid>
</Grid>
</Layout>
);
export default Profile;
2023-05-24 20:27:57 +00:00
export const getServerSideProps = async (context: any) => {};