13 lines
480 B
Plaintext
13 lines
480 B
Plaintext
---
|
|
import WebsiteLayout from '@layouts/website/WebsiteLayout.astro';
|
|
---
|
|
|
|
<WebsiteLayout title="Interner Server Fehler">
|
|
<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">500: Interner Server Fehler</h1>
|
|
<p class="flex gap-2 text-center">
|
|
Es ist ein unerwarteter interner Server Fehler aufgetreten. Bitte versuche deine Anfrage erneut.
|
|
</p>
|
|
</div>
|
|
</WebsiteLayout>
|