From 5078d4edb81916a373aa80c02b67cc9852ae0dec Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:07:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ab9d816..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Your Name - College Portfolio & Projects", description: "Explore my college portfolio showcasing web design, development, and creative projects. Connect with me for collaboration opportunities.", keywords: "college portfolio, student developer, web design, projects, skills", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Your Name - College Portfolio", description: "Showcasing academic excellence through innovative projects and digital solutions.", type: "website", siteName: "Your College Portfolio", images: [ - { - url: "http://img.b2bpic.net/free-photo/designer-desk-architectural-tools-notebook-working-place-concept_53876-123770.jpg", alt: "Portfolio showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Your Name - College Portfolio", description: "Discover my academic projects and professional journey.", images: ["http://img.b2bpic.net/free-photo/designer-desk-architectural-tools-notebook-working-place-concept_53876-123770.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +