import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Leistungsbilanz", description: "Leistungsbilanz fuer elektrische Verbraucher", }; export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { return ( {children} ); }