summaryrefslogtreecommitdiff
path: root/app/layout.tsx
diff options
context:
space:
mode:
authorYuren Hao <97327730+YurenHao0426@users.noreply.github.com>2025-02-02 23:59:29 -0600
committerGitHub <noreply@github.com>2025-02-02 23:59:29 -0600
commit1774317d667aed94b2a2f0acae885ce9420de8e2 (patch)
tree71ca71920e68a43536bc58085ebc96e193db776a /app/layout.tsx
Add files via uploadHEADmain
initialization
Diffstat (limited to 'app/layout.tsx')
-rw-r--r--app/layout.tsx23
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>
+ )
+}
+