From bc55f3f39e9dcf4cd58d6b65cd2cc3df34127baf Mon Sep 17 00:00:00 2001 From: ayoayco Date: Fri, 16 Aug 2024 15:53:00 +0200 Subject: [PATCH] feat: add a 'not found' page --- src/pages/404.astro | 19 +++++++++++++++++++ 1 file changed, 19 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..67dbdf4 --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,19 @@ +--- +import AddressBar from "../components/AddressBar.astro"; +import Layout from "../layouts/Layout.astro"; +import Library from "../components/Library.astro"; +import Footer from "../components/Footer.astro"; + +export const prerender = false; + +--- + + +
+

+ 404: Not Found +

+
+ +