From 188204e72f21a47e6e0d844376ab7a16ae699fa1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:41:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 6 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b5fecbf..c0b4046 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TrueKitFC - Authentic Soccer Jerseys Online Store", description: "Shop authentic soccer jerseys from top clubs and national teams. Premium quality guaranteed with fast worldwide shipping. 50K+ satisfied customers worldwide.", keywords: "authentic soccer jerseys, football kits, club jerseys, national team kits, premium soccer apparel, authentic replica jerseys", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "TrueKitFC - Authentic Soccer Jerseys", description: "Discover authentic soccer jerseys from your favorite teams worldwide. Premium quality guaranteed.", type: "website", siteName: "TrueKitFC", images: [ - { - url: "http://img.b2bpic.net/free-vector/modern-background-with-gradient-dynamic-shapes_52683-15308.jpg", alt: "TrueKitFC authentic soccer jerseys"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TrueKitFC - Authentic Soccer Jerseys", description: "Premium authentic soccer jerseys from world-class brands and teams.", images: ["http://img.b2bpic.net/free-vector/modern-background-with-gradient-dynamic-shapes_52683-15308.jpg"], - }, -}; + title: "TrueKitFC - Authentic Soccer Jerseys", description: "Discover the world's most authentic and exclusive soccer jerseys from legendary clubs and national teams."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -