gallery.badmanners.xyz/src/pages/404.astro

13 lines
601 B
Text

---
import GalleryLayout from "@layouts/GalleryLayout.astro";
---
<GalleryLayout pageTitle="404">
<Fragment slot="head">
<meta property="og:description" content="Not found" />
<meta name="description" content="The requested link could not be found." />
</Fragment>
<h1 class="m-2 text-3xl font-semibold text-stone-800 dark:text-stone-100">404 &ndash; Not Found</h1>
<hr class="mb-3 ml-[2px] mt-2 h-[4px] max-w-xs rounded-sm bg-stone-800 dark:bg-stone-100" aria-hidden />
<p class="my-4">The requested link could not be found. Make sure that the URL is correct.</p>
</GalleryLayout>