diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-31 15:19:59 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-31 15:19:59 +0700 |
| commit | 5d5401ae36e7e0c8eb38ccd943c1aa44a9573d35 (patch) | |
| tree | b0767c523e097a4612bd8026b5952c41f446e39a /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> + ) +} |
