From 5e9cbcf5c814c3a04aab91b3f6710fbe87dfbe0c Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Tue, 24 Oct 2023 10:01:33 +0200 Subject: [PATCH] Add 404 page layout --- astro/src/pages/404.astro | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 astro/src/pages/404.astro diff --git a/astro/src/pages/404.astro b/astro/src/pages/404.astro new file mode 100644 index 0000000..728d28e --- /dev/null +++ b/astro/src/pages/404.astro @@ -0,0 +1,8 @@ +--- +import Layout from "@/layouts/Layout.astro"; + +--- + + +

Ooops! Site not found.

+
\ No newline at end of file