From 1747a597bbcdb1342a668bd219b95f4149506560 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:14:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 6 insertions(+), 1405 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5a7f543..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "[YOUR NAME] — Premium Portfolio | Designer & Developer", description: "Exceptional digital experiences. [YOUR TITLE / ROLE] specializing in product design, frontend development, and brand strategy. View portfolio.", keywords: "portfolio, designer, developer, ui/ux, web design, brand, product design", metadataBase: new URL("https://yourportfolio.com"), - alternates: { - canonical: "https://yourportfolio.com"}, - openGraph: { - title: "[YOUR NAME] — Premium Portfolio", description: "Discover exceptional work in product design, web development, and brand strategy.", url: "https://yourportfolio.com", siteName: "[YOUR NAME]", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/grey-haze-dark-liquid_23-2148102020.jpg", alt: "Portfolio preview"}, - ], - }, - twitter: { - card: "summary_large_image", title: "[YOUR NAME] — Premium Portfolio", description: "Crafting digital experiences that solve real problems.", images: ["http://img.b2bpic.net/free-photo/grey-haze-dark-liquid_23-2148102020.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} - -