diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index bbe7c89..0000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -/src/styles/materialize linguist-vendored -/public/static/ linguist-vendored \ No newline at end of file diff --git a/src/components/Title.module.sass b/src/components/Title.module.sass deleted file mode 100644 index 19a2071..0000000 --- a/src/components/Title.module.sass +++ /dev/null @@ -1,2 +0,0 @@ -.title - text-align: center diff --git a/src/components/Title.tsx b/src/components/Title.tsx deleted file mode 100644 index 95b0bdc..0000000 --- a/src/components/Title.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import { FC } from "react"; - -import styles from "./Title.module.sass"; - -const Title: FC = () => { - return

Hello World

; -}; - -export default Title; diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 0000000..f2f4e50 --- /dev/null +++ b/src/pages/404.tsx @@ -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 ( + <> + + + + Page not found + + The page may have been moved or deleted. + + + + + ); +}; + +export default NotFound; diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 9ea58af..6d2f296 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -2,14 +2,11 @@ import { NextPage } from "next"; import { NextSeo } from "next-seo"; import Layout from "@components/Layout"; -import Title from "@components/Title"; const Index: NextPage = () => ( <> - - - </Layout> + <Layout></Layout> </> ); diff --git a/src/styles/globals.sass b/src/styles/globals.sass index 11bf8cb..3ceca58 100644 --- a/src/styles/globals.sass +++ b/src/styles/globals.sass @@ -1,3 +1,2 @@ - a text-decoration: none