rewrite website

This commit is contained in:
2025-10-13 17:22:49 +02:00
parent a6d910f56a
commit 32f28e5324
263 changed files with 17904 additions and 14451 deletions

14
src/pages/404.astro Normal file
View File

@@ -0,0 +1,14 @@
---
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>