From 77c36d85e0363350c82e2d011f7f9506db86e0e9 Mon Sep 17 00:00:00 2001 From: Josh Pullen Date: Fri, 5 Jul 2024 20:04:30 -0400 Subject: [PATCH] Fix design of 404 page --- app/not-found.tsx | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/app/not-found.tsx b/app/not-found.tsx index e7303be..b095e9b 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,21 +1,24 @@ +import Center from "../components/Center"; import { Footer } from "../components/Footer"; import Nav from "../components/Nav"; +import TopBorder from "../components/TopBorder"; export default function NotFound() { return ( - <> -
-
-
-
-

404 - Not Found

-

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

+
+ +
); }