From 1774317d667aed94b2a2f0acae885ce9420de8e2 Mon Sep 17 00:00:00 2001 From: Yuren Hao <97327730+YurenHao0426@users.noreply.github.com> Date: Sun, 2 Feb 2025 23:59:29 -0600 Subject: Add files via upload initialization --- app/layout.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 app/layout.tsx (limited to 'app/layout.tsx') 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 ( + + {children} + + ) +} + -- cgit v1.2.3