From 15c2b31e9fcc38c73c5effb96dfbc6af6c67c9e8 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Wed, 29 Oct 2025 21:31:28 -0700 Subject: [PATCH] (FEAT): Implemented 404 page --- web/src/layouts/WebLayout.tsx | 6 ++---- web/src/pages/NotFound.tsx | 24 +++++++++++++++++++++--- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/web/src/layouts/WebLayout.tsx b/web/src/layouts/WebLayout.tsx index 7c63cb4..181949e 100644 --- a/web/src/layouts/WebLayout.tsx +++ b/web/src/layouts/WebLayout.tsx @@ -6,11 +6,9 @@ export default function WebLayout() { return ( <> -
+
-
- -
+
diff --git a/web/src/pages/NotFound.tsx b/web/src/pages/NotFound.tsx index 5d9ca60..622f327 100644 --- a/web/src/pages/NotFound.tsx +++ b/web/src/pages/NotFound.tsx @@ -1,9 +1,27 @@ +import ROUTE_CONSTANTS from "../types/routes"; export default function NotFound() { return ( - <> -

Not Found!

- +
+
+
+
+ + + +
+
+

404

+

This page could not be found!

+ Back Home +
+
+
); }