From 63c0514ea8e069c0fc61e323f8d790e468b05ad1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 07:24:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1431 +------------------------------------------- 1 file changed, 7 insertions(+), 1424 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c237059..4ad0eb9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1436 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Northern Collectables - Premium Trading Cards & Pokémon Collectibles", - description: "Shop authentic Pokémon trading cards, sealed booster boxes, rare singles, and professionally graded CGC/AGS cards. Trusted by collectors worldwide.", - keywords: "Pokemon cards, trading cards, sealed booster box, graded cards, CGC, rare collectibles, trading card collectibles", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Northern Collectables - Trading Cards & Collectibles", - description: "Your destination for authentic Pokémon cards, sealed products, and graded collectibles.", - type: "website", - siteName: "Northern Collectables", - images: [ - { - url: "http://img.b2bpic.net/free-vector/gradient-vip-invitation-card-template_52683-146466.jpg", - alt: "Northern Collectables Trading Cards", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Northern Collectables - Premium Trading Cards", - description: "Shop authentic Pokémon cards and rare collectibles.", - images: ["http://img.b2bpic.net/free-vector/gradient-vip-invitation-card-template_52683-146466.jpg"], - }, -}; + title: "Northern Collectables - Trading Cards & Rare Collectibles", description: "Shop factory-sealed Pokémon products, rare singles, and professionally graded cards. Trusted by collectors worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -