diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-10-02 14:40:26 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-10-02 14:40:26 -0400 |
| commit | 95280d67a415b31d99ac7e0ebe35c8440847fd90 (patch) | |
| tree | 31195292013b2cd717881837204a304ab2def9f2 /app/layout.js | |
| download | minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.tar.gz minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.tar.bz2 minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.zip | |
Initial commit from Create Next App
Diffstat (limited to 'app/layout.js')
| -rw-r--r-- | app/layout.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/layout.js b/app/layout.js new file mode 100644 index 0000000..c93f806 --- /dev/null +++ b/app/layout.js @@ -0,0 +1,17 @@ +import './globals.css' +import { Inter } from 'next/font/google' + +const inter = Inter({ subsets: ['latin'] }) + +export const metadata = { + title: 'Create Next App', + description: 'Generated by create next app', +} + +export default function RootLayout({ children }) { + return ( + <html lang="en"> + <body className={inter.className}>{children}</body> + </html> + ) +} |
