--- // src/pages/404.astro import MainLayout from "../layouts/MainLayout.astro"; import { getPath } from "../utils/paths"; import { Icon } from "astro-icon/components"; interface props { title: string; } const { title = "404" } = Astro.props; ---

Fehler {title}

Zurück zur Startseite