diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2023-10-27 16:10:10 -0400 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2023-10-27 16:10:10 -0400 |
| commit | 1fd6e48807d455f66d9cd79db64cbf9e9f947c6c (patch) | |
| tree | 527c8ee8dd82124f595c04d3a52e197de28097bc /src/app/layout.tsx | |
Initial commit from Create Next App
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..40e027f --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,22 @@ +import type { Metadata } from 'next' +import { Inter } from 'next/font/google' +import './globals.css' + +const inter = Inter({ subsets: ['latin'] }) + +export const metadata: Metadata = { + title: 'Create Next App', + description: 'Generated by create next app', +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + <html lang="en"> + <body className={inter.className}>{children}</body> + </html> + ) +} |
