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
|
|
|
>
|
2022-12-02 17:45:14 +01:00
|
|
|
<ZammadWrapper url="http://localhost:3000/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;
|