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.
 
 
 

34 lines
762 B

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