diff options
Diffstat (limited to 'app/layout.tsx')
| -rw-r--r-- | app/layout.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..f62b2be --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,23 @@ +import "./globals.css" +import { Inter } from "next/font/google" +import type React from "react" + +const inter = Inter({ subsets: ["latin"] }) + +export const metadata = { + title: "My Personal Blog & Portfolio", + description: "Explore my school work and personal archive", +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + <html lang="en"> + <body className={inter.className}>{children}</body> + </html> + ) +} + |
