diff options
| author | real-zephex <[email protected]> | 2024-03-14 08:38:26 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-14 08:38:26 +0530 |
| commit | aef3c9a4f2088e15562e22d7c9ca11cdb8b837a7 (patch) | |
| tree | 80a070025311560c4ccf01996a6758d02657d337 /src/app/layout.js | |
| download | dramalama-aef3c9a4f2088e15562e22d7c9ca11cdb8b837a7.tar.xz dramalama-aef3c9a4f2088e15562e22d7c9ca11cdb8b837a7.zip | |
Initial commit from Create Next App
Diffstat (limited to 'src/app/layout.js')
| -rw-r--r-- | src/app/layout.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/app/layout.js b/src/app/layout.js new file mode 100644 index 0000000..9aef1df --- /dev/null +++ b/src/app/layout.js @@ -0,0 +1,17 @@ +import { Inter } from "next/font/google"; +import "./globals.css"; + +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> + ); +} |