Dejvino's Curriculum Vitae
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
410 B

  1. import './globals.css'
  2. import { Inter } from 'next/font/google'
  3. const inter = Inter({ subsets: ['latin'] })
  4. export const metadata = {
  5. title: 'David Hrdina Němeček | CV',
  6. description: 'Curriculum Vitae',
  7. }
  8. export default function RootLayout({
  9. children,
  10. }: {
  11. children: React.ReactNode
  12. }) {
  13. return (
  14. <html lang="en">
  15. <body className={inter.className}>{children}</body>
  16. </html>
  17. )
  18. }