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.
 
 
 

30 lines
613 B

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