From cc0a57eeef1c06be7ffdf60c407461ecaa6daae5 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 04:58:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++------------------------------------- 1 file changed, 11 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ffef97e..5ecb78c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,22 @@ -import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; -import { Halant } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle. Shop bold streetwear designs with exceptional quality and unique artistic prints.", keywords: "graphic t-shirts, streetwear, fashion, premium tees, modern style, artistic prints", metadataBase: new URL("https://yourlogo.com"), - alternates: { - canonical: "https://yourlogo.com"}, - openGraph: { - title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle. Shop bold streetwear designs with exceptional quality.", url: "https://yourlogo.com", siteName: "Your Logo", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-happy-man-holding-glasses_23-2149004834.jpg", alt: "Premium graphic t-shirt showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Graphic T-Shirts | Your Logo", description: "Discover premium graphic tees for modern lifestyle", images: ["http://img.b2bpic.net/free-photo/medium-shot-happy-man-holding-glasses_23-2149004834.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Premium Graphic Tees | Your Logo', + description: 'Discover our collection of premium graphic t-shirts for modern lifestyle', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}