import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'], display: 'swap', variable: '--font-inter', }) export const metadata: Metadata = { title: 'Kniha Jízd', description: 'Journey Book Management System', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }