diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-04 23:30:32 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-04 23:30:32 +0000 |
| commit | fd256793f165595fdb078d9ab52f06d79e776fdd (patch) | |
| tree | 62c61f5d3da0a64b564d02bd42fd1038c5512e19 /app/layout.tsx | |
| download | karakeep-fd256793f165595fdb078d9ab52f06d79e776fdd.tar.zst | |
Initial commit from Create Next App
Diffstat (limited to 'app/layout.tsx')
| -rw-r--r-- | app/layout.tsx | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 00000000..3314e478 --- /dev/null +++ b/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, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + <html lang="en"> + <body className={inter.className}>{children}</body> + </html> + ); +} |
