From 5582a309931d201a18322596a6e520b0a2a67c71 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:02:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8a18ff1..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Creative Portfolio | Design & Development", description: "Explore my portfolio of award-winning design and development projects. Let's create something amazing together.", keywords: "portfolio, design, development, web design, mobile app, branding", metadataBase: new URL("https://creative-portfolio.com"), - openGraph: { - title: "Creative Portfolio | Design & Development", description: "Explore award-winning design and development work", siteName: "Creative Portfolio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-late-night_23-2150171119.jpg", alt: "Portfolio showcase" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Creative Portfolio | Design & Development", description: "Award-winning design and development portfolio", images: ["http://img.b2bpic.net/free-photo/medium-shot-woman-working-late-night_23-2150171119.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +