From f894a6fe206f90919fe4a4e14da02eb707a2bfff Mon Sep 17 00:00:00 2001 From: Mason Thomas Date: Sat, 29 Jun 2024 00:42:13 -0500 Subject: [PATCH] add basic 404 page --- src/pages/404.astro | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/pages/404.astro diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..98220c5 --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,22 @@ +--- +import '../styles/reset.css' +import '../styles/index.css' +import '../styles/App.css' +import BaseLayout from '../layouts/base.astro' +--- + + +
+
+

Uh Oh! You shouldn't be here!

+ + Click here to go home. + +
+
+