diff options
Diffstat (limited to 'src/pages/404.astro')
| -rw-r--r-- | src/pages/404.astro | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..d02cca3 --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,13 @@ +--- +import PageLayout from "@/layouts/Base.astro"; + +const meta = { + description: "Oops! It looks like this page is lost in space!", + title: "Oops! You found a missing page!", +}; +--- + +<PageLayout meta={meta}> + <h1 class="title mb-6">404 | Oops something went wrong</h1> + <p class="mb-8">Please use the navigation to find your way back</p> +</PageLayout> |
