diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8539a69..654cfcb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Topps Trade Center | Video Games, Trading Cards & Retro Gaming in Benton Harbor", description: "Topps Trade Center: Your gaming hub in Benton Harbor, MI since 1983. Buy, sell, trade video games, trading cards, retro systems & more. Visit today!", keywords: "video game store Benton Harbor, retro game store Michigan, trading card store, sell video games Michigan, buy retro games, gaming store near me", metadataBase: new URL("https://toppstradecenter.com"), - alternates: { - canonical: "https://toppstradecenter.com"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Topps Trade Center | Your Gaming Hub Since 1983", description: "The region's largest video game exchange. Buy, trade, sell games and trading cards in Benton Harbor, MI.", url: "https://toppstradecenter.com", siteName: "Topps Trade Center", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/retro-vhs-packaging-indoors_23-2150172383.jpg", alt: "Topps Trade Center Gaming Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Topps Trade Center | Your Gaming Hub Since 1983", description: "The region's largest video game exchange. Buy, trade, sell games and trading cards.", images: ["http://img.b2bpic.net/free-photo/retro-vhs-packaging-indoors_23-2150172383.jpg"], - }, -}; + title: "Topps Trade Center - Gaming Hub in Benton Harbor, MI", description: "Buy, trade, and discover retro and modern games at Topps Trade Center in Benton Harbor, Michigan. Largest selection of video games, trading cards, and gaming accessories."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}