-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
32 lines (30 loc) · 1006 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { FC } from "react";
import Rootpage from "../root";
import { Box, Typography } from "@mui/material";
const HomePage: FC = () => (
<Rootpage>
<Box
sx={{
// backgroundImage: `url(${backgroundImage})`,
backgroundSize: "cover",
backgroundPosition: "center",
color: "white",
padding: 8,
textAlign: "center",
display: "flex",
flexDirection: "column",
alignItems: "center",
height: "95vh", // Set height to 100% of viewport height
maxWidth: "95%"
}}
>
<Typography variant="h1" component="h1" gutterBottom>
Attendunce Dashboard
</Typography>
<Typography variant="subtitle1" gutterBottom>
Overview of Schedule | Attendence Overview
</Typography>
</Box>
</Rootpage>
);
export default HomePage;