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

34 lines
647 B
TypeScript
Raw Normal View History

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";
const Profile = () => (
<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%",
}}
>
<ZammadWrapper
2023-02-22 13:05:52 +00:00
path="/#profile"
2022-12-02 17:45:14 +01:00
hideSidebar={false}
/>
</Grid>
</Grid>
</Layout>
);
export default Profile;