import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); export const metadata: Metadata = { title: "ArcadeHub - Arcade Games Marketplace | Buy & Sell", description: "Buy and sell authentic arcade games on ArcadeHub. Connect with collectors and sellers worldwide. Secure listings with seller verification, detailed specs, and ratings.", keywords: "arcade games, marketplace, buy arcade games, sell arcade games, vintage arcade, arcade collectors, classic gaming", metadataBase: new URL("https://arcadehub.com"), alternates: { canonical: "https://arcadehub.com", }, openGraph: { title: "ArcadeHub - Arcade Games Marketplace", description: "Discover and trade arcade games in our vibrant community marketplace. Secure, verified sellers and authentic listings.", url: "https://arcadehub.com", siteName: "ArcadeHub", images: [ { url: "http://img.b2bpic.net/free-photo/smiling-young-people-playing-table-football-while-indoors_146671-15220.jpg", alt: "ArcadeHub Marketplace", }, ], type: "website", }, twitter: { card: "summary_large_image", title: "ArcadeHub - Arcade Games Marketplace", description: "Buy and sell authentic arcade games with verified sellers and secure transactions.", images: ["http://img.b2bpic.net/free-photo/smiling-young-people-playing-table-football-while-indoors_146671-15220.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}