16 lines
414 B
Plaintext
16 lines
414 B
Plaintext
---
|
|
import Heading from "@/components/Heading.astro";
|
|
import Section from "@/components/Section.astro";
|
|
import MainLayout from "@/layouts/MainLayout.astro";
|
|
import RootLayout from "@/layouts/RootLayout.astro";
|
|
---
|
|
|
|
<RootLayout title="Nicht gefunden">
|
|
<MainLayout>
|
|
<Section>
|
|
<Heading main>Die aufgerufene Seite konnte nicht gefunden werden.</Heading
|
|
>
|
|
</Section>
|
|
</MainLayout>
|
|
</RootLayout>
|