From 0a1b38010578b68382043b014f5a651bbb784f9d Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Wed, 29 Oct 2025 21:37:12 -0700 Subject: [PATCH] (FIX): Implemented an interesting layout update. --- web/src/layouts/WebLayout.tsx | 6 +++++- web/src/pages/Home.tsx | 4 +--- web/src/pages/NotFound.tsx | 33 +++++++++++++++------------------ 3 files changed, 21 insertions(+), 22 deletions(-) diff --git a/web/src/layouts/WebLayout.tsx b/web/src/layouts/WebLayout.tsx index 181949e..67a23d5 100644 --- a/web/src/layouts/WebLayout.tsx +++ b/web/src/layouts/WebLayout.tsx @@ -8,7 +8,11 @@ export default function WebLayout() { <>
- +
+
+ +
+
diff --git a/web/src/pages/Home.tsx b/web/src/pages/Home.tsx index 2c30a5f..94f7347 100644 --- a/web/src/pages/Home.tsx +++ b/web/src/pages/Home.tsx @@ -1,7 +1,5 @@ export default function Home() { return ( - <> -

Home

- +

hello

); } diff --git a/web/src/pages/NotFound.tsx b/web/src/pages/NotFound.tsx index 622f327..086acee 100644 --- a/web/src/pages/NotFound.tsx +++ b/web/src/pages/NotFound.tsx @@ -1,26 +1,23 @@ import ROUTE_CONSTANTS from "../types/routes"; export default function NotFound() { - return ( -
-
-
-
- - - -
-
-

404

-

This page could not be found!

- Back Home +
+
+
+ + + +
+

404

+

This page could not be found!

+ Back Home
);