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 (
{/* Sidebar — fixed on desktop, slide-in overlay on mobile */} {/* Main content — offset by sidebar width on large screens */}
{children}
); }