Added 404 page
parent
8f4f5c2fa6
commit
a41b50b3cc
@ -1,2 +0,0 @@
|
|||||||
/src/styles/materialize linguist-vendored
|
|
||||||
/public/static/ linguist-vendored
|
|
@ -1,2 +0,0 @@
|
|||||||
.title
|
|
||||||
text-align: center
|
|
@ -1,9 +0,0 @@
|
|||||||
import { FC } from "react";
|
|
||||||
|
|
||||||
import styles from "./Title.module.sass";
|
|
||||||
|
|
||||||
const Title: FC = () => {
|
|
||||||
return <h1 className={styles.title}>Hello World</h1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Title;
|
|
@ -0,0 +1,25 @@
|
|||||||
|
import { NextPage } from "next";
|
||||||
|
import { NextSeo } from "next-seo";
|
||||||
|
|
||||||
|
import Box from "@mui/material/Box";
|
||||||
|
import Typography from "@mui/material/Typography";
|
||||||
|
|
||||||
|
import Layout from "@components/Layout";
|
||||||
|
|
||||||
|
const NotFound: NextPage = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<NextSeo title="Not Found" />
|
||||||
|
<Layout>
|
||||||
|
<Box sx={{ mt: 5, textAlign: "center" }}>
|
||||||
|
<Typography variant="h3">Page not found</Typography>
|
||||||
|
<Typography variant="h4">
|
||||||
|
The page may have been moved or deleted.
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
</Layout>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default NotFound;
|
@ -1,3 +1,2 @@
|
|||||||
|
|
||||||
a
|
a
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
|
Loading…
Reference in new issue