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

31 lines
667 B
TypeScript
Raw Normal View History

2022-12-02 10:55:56 +00:00
import Head from "next/head";
2022-12-02 17:45:14 +01:00
import { Grid } from "@mui/material";
2022-12-02 10:55:56 +00:00
import { Layout } from "components/Layout";
2022-12-02 17:45:14 +01:00
import { ZammadWrapper } from "components/ZammadWrapper";
2022-12-02 10:55:56 +00:00
2022-12-02 17:45:14 +01:00
const Home = () => (
<Layout>
<Head>
<title>Link Shell</title>
</Head>
<Grid
container
spacing={0}
sx={{ height: "100%", width: "100%" }}
direction="column"
>
2022-12-02 10:55:56 +00:00
<Grid
2022-12-02 17:45:14 +01:00
item
sx={{
height: "100%",
width: "100%",
}}
2022-12-02 10:55:56 +00:00
>
2023-02-10 12:14:44 +00:00
<ZammadWrapper url="https://8003-digiresilienc-linkshell-c2tqwgcccbs.ws-eu86.gitpod.io/zammad/#dashboard" />
2022-12-02 10:55:56 +00:00
</Grid>
2022-12-02 17:45:14 +01:00
</Grid>
</Layout>
);
2022-12-02 10:55:56 +00:00
export default Home;