From b378bd7a97f604e6085e6680d3f9605fc38c0460 Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Wed, 1 Sep 2021 18:03:15 +0100 Subject: [PATCH] Add 404 page --- src/Error404.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/Error404.js diff --git a/src/Error404.js b/src/Error404.js new file mode 100644 index 0000000..5798269 --- /dev/null +++ b/src/Error404.js @@ -0,0 +1,29 @@ +import React from 'react'; +import NavBar from './NavBar'; +import Footer from "./Footer"; +import { HomeRounded as HomeRoundedIcon } from "@material-ui/icons"; +import LinkButton from "./LinkButton"; + +export default function PageNotFound() { + const navbarItems = [ + { + type: "link", + link: "/", + icon: , + hideTextMobile: true, + } + ]; + + document.title = "Error 404 | Parandum"; + + return ( +
+ +
+

Error 404

+

Sorry, but we can't find that page.

+
+
+ ) +}