cv/src/app/layout.tsx

24 lines
436 B
TypeScript
Raw Normal View History

2023-05-24 06:43:30 +00:00
import React from 'react'
2023-05-24 04:23:20 +00:00
import { Inter } from 'next/font/google'
2023-05-24 06:43:30 +00:00
import './globals.css'
2023-05-24 04:23:20 +00:00
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 (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
}