From 04cba4fa051b1c8958aa4dfe99266c56d0e8cf0b Mon Sep 17 00:00:00 2001 From: Jewgeni Date: Sat, 5 Oct 2024 08:17:53 +0200 Subject: [PATCH] feat: add 404 page --- src/pages/404.astro | 12 ++++++++++++ 1 file changed, 12 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..68e329d --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,12 @@ +--- +import BaseLayout from '@/layouts/BaseLayout.astro'; +--- + + +
+

404: Page Not Found

+

+ The page you are looking for does not exist. Please check the URL or return to the home page. +

+
+