From 62b6c5602c5503b39de1bfd2cb92ae78f9e8c309 Mon Sep 17 00:00:00 2001 From: Le Minh Tri Date: Sat, 25 Feb 2023 07:47:04 +0700 Subject: [PATCH] feat(page): add page /404 --- src/pages/404.astro | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..92eff695 --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,20 @@ +--- +import siteConfig from '@/configs/site' +import AppLayout from '@/layouts/AppLayout.astro' + +const { author } = siteConfig + +const title = '404 Not Found' +const description = '404 Error, probably not found...' +--- + + +
+

{title}

+

{description}

+ Go Home +
+