-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathNotFound.tsx
More file actions
77 lines (72 loc) · 1.86 KB
/
NotFound.tsx
File metadata and controls
77 lines (72 loc) · 1.86 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { Box, Button, Container, Typography, useTheme } from "@mui/material";
import { useNavigate } from "react-router-dom";
export default function NotFound() {
const navigate = useNavigate();
const theme = useTheme();
return (
<Container maxWidth="md">
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
minHeight: "80vh",
textAlign: "center",
gap: 3,
}}
>
<Typography
variant="h1"
sx={{
fontSize: { xs: "3rem", sm: "5rem", md: "6rem" },
fontWeight: 700,
color: theme.palette.primary.main,
margin: 0,
}}
>
404
</Typography>
<Typography
variant="h3"
sx={{
fontWeight: 600,
color: theme.palette.text.primary,
marginTop: -2,
}}
>
Page Not Found
</Typography>
<Typography
variant="body1"
sx={{
fontSize: "1.1rem",
color: theme.palette.text.secondary,
maxWidth: "500px",
}}
>
Sorry, the page you're looking for doesn't exist. It might have been
moved or deleted.
</Typography>
<Box sx={{ display: "flex", gap: 2, flexWrap: "wrap", justifyContent: "center" }}>
<Button
variant="contained"
color="primary"
size="large"
onClick={() => navigate("/")}
>
Go to Homepage
</Button>
<Button
variant="outlined"
color="primary"
size="large"
onClick={() => navigate(-1)}
>
Go Back
</Button>
</Box>
</Box>
</Container>
);
}