From 6dca925ee4fbe0956aabd10f6163370eb661fa82 Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Tue, 16 Apr 2024 10:26:01 -0400 Subject: [PATCH] Not found page --- Frontend/src/app/not-found.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Frontend/src/app/not-found.tsx diff --git a/Frontend/src/app/not-found.tsx b/Frontend/src/app/not-found.tsx new file mode 100644 index 0000000..d086d90 --- /dev/null +++ b/Frontend/src/app/not-found.tsx @@ -0,0 +1,28 @@ +import Creeper from "./components/creeper"; +import { minecrafter } from "./font/fonts"; +import { cn } from "./lib/utils"; + +/** + * The 404 page. + * + * @returns the page jsx + */ +const NotFoundPage = (): JSX.Element => ( +
+ {/* Creeper */} + + + {/* Header */} +

+ We're Sssssorry +

+ + {/* Error */} +

+ The page you were looking for could not be found. +

+
+); +export default NotFoundPage;