Files
website/src/pages/404.astro
2025-10-13 21:04:21 +02:00

15 lines
531 B
Plaintext

---
import WebsiteLayout from '@layouts/website/WebsiteLayout.astro';
---
<WebsiteLayout title="Seite nicht gefunden">
<div class="flex flex-col justify-center items-center gap-4 h-full w-full absolute">
<h1 class="text-2xl sm:text-3xl md:text-4xl lg:text-5xl">404: Seite nicht gefunden</h1>
<p class="flex gap-2 text-center">
Es wurde keine Seite unter der URL <code class="contents mx-1 md:block md:my-0 md:whitespace-pre"
>{Astro.url.pathname}</code
> gefunden.
</p>
</div>
</WebsiteLayout>