From 3269c3944b759d49efc670f967375ba315579783 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:43:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 28 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0269617..74e12d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,40 +1,39 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Tag } from "@/components/ui/tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const metadata: Metadata = { + title: "Sports Cards Co | Buy & Sell Premium Sports Cards", description: "Your trusted marketplace for buying and selling sports cards including case hits, autographs, RPAs, and any card $5+. We specialize in authenticated collectibles."}; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Buy & Sell Sports Cards | Sports Cards Co", description: "We buy and sell premium sports cards including case hits, autographs, RPAs, and any card $5+. Authenticated collectibles with fast payouts.", keywords: "sports cards, buy cards, sell cards, case hits, autographs, RPA, trading cards", openGraph: { - title: "Buy & Sell Sports Cards | Sports Cards Co", description: "We buy and sell premium sports cards including case hits, autographs, RPAs, and any card $5+.", siteName: "Sports Cards Co", type: "website"}, - twitter: { - card: "summary_large_image", title: "Buy & Sell Sports Cards", description: "Premium sports cards marketplace for case hits, autographs, and RPAs"}, -}; +export { metadata }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + + + {children} - + +