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;