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.
 
 
 

29 lines
568 B

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