From ce65617911687821c7b3bfee95b85659669327f9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:01:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 03339d8..48502ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Creative Designer & Developer | Portfolio", description: "Explore my portfolio of innovative design and development projects. I create beautiful digital experiences tailored to your needs.", keywords: "portfolio, designer, developer, creative, web design, UI/UX", metadataBase: new URL("https://portfolio.example.com"), - alternates: { - canonical: "https://portfolio.example.com"}, - openGraph: { - title: "Creative Designer & Developer | Portfolio", description: "Explore my portfolio of innovative design and development projects.", type: "website", siteName: "Portfolio"}, - twitter: { - card: "summary_large_image", title: "Creative Designer & Developer | Portfolio", description: "Explore my portfolio of innovative design and development projects."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Portfolio", description: "Creative Professional & Designer"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +