{children}
import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import Navigation from "@/components/Navigation"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Kabel-Dokumentation", description: "Dokumentation aller Netzwerk-, Strom- und Signalkabel im Haus", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (