import React from 'react' import { Inter } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'] }) export const metadata = { title: 'David Hrdina Němeček | CV', description: 'Curriculum Vitae', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }