import type { Metadata } from "next"; import { Cormorant_Garamond, Inter } from "next/font/google"; import { Navbar } from "@/components/Navbar"; import { Button } from "@/components/Button"; import { OrganicBlob } from "@/components/OrganicBlob"; import { ImagePlaceholder } from "@/components/ImagePlaceholder"; import { siteConfig } from "@/lib/site"; import "./(frontend)/globals.css"; // Required because the app has two root layouts — (frontend) and (payload) — // so there is no single layout Next.js could compose a 404 page from. // See node_modules/next/dist/docs/.../not-found.md ("global-not-found.js"). const cormorant = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["400", "500", "600"], style: ["normal", "italic"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Seite nicht gefunden", robots: { index: false, follow: false }, }; export default function GlobalNotFound() { return ( {/* This page is always statically prerendered, so it can't read live CMS data — the mega menu is intentionally omitted here. */}

404

Diesen Weg gibt es hier nicht

Diese Seite wurde nicht gefunden. Vielleicht findest du deinen Weg über die Startseite, die Angebote oder den Kontakt weiter.

{/* Minimal static footer — the full Footer reads live CMS data, which isn't available on this always-static 404 page. */} ); }