-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.tsx
33 lines (31 loc) · 774 Bytes
/
404.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
33
import Image from "next/image";
import { Container, Link, Typography } from "@mui/material";
export default function custom404() {
return (
<Container
sx={{
minHeight: "100vh",
display: "flex",
alignItems: "center",
justifyContent: "center",
flexDirection: "column",
}}
>
<Image
src={"/LogoBlack.png"}
layout={"fixed"}
height={"260px"}
width={"300px"}
alt={"Cometlabs Logo"}
/>
<Typography variant="TitleLarge" sx={{ m: 2 }}>
{"The page you're looking for doesn't exist"}
</Typography>
<Typography variant="LabelLarge">
<Link href="/">
Back to home page
</Link>
</Typography>
</Container>
);
}