import type { Metadata, Viewport } from 'next'; import './globals.css'; export const metadata: Metadata = { title: 'Logbuch — Sternwarte Welzheim', description: 'Logbuch für die Sternwarte Welzheim', }; export const viewport: Viewport = { width: 'device-width', initialScale: 1, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }