import type { Metadata } from "next"; import { Sora } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sora = Sora({ variable: "--font-sora", subsets: ["latin"], }); export const metadata: Metadata = { title: "Retro Arcade | Authentic Vintage Games & Consoles", description: "Discover authentic vintage games, consoles, and collectibles. Expert authentication, restoration, and preservation of gaming history since 2010.", keywords: "vintage games, retro gaming, game collection, arcade, Nintendo, Sega, authentic vintage collectibles", metadataBase: new URL("https://retroarcade.com"), alternates: { canonical: "https://retroarcade.com" }, robots: { index: true, follow: true }, openGraph: { title: "Retro Arcade | Authentic Vintage Games & Consoles", description: "Discover gaming's greatest treasures. Authenticated vintage games and consoles from the golden era.", url: "https://retroarcade.com", siteName: "Retro Arcade", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/80-s-inspired-summer-activities-with-retro-aesthetic_23-2151425796.jpg", alt: "Vintage gaming collection" } ] }, twitter: { card: "summary_large_image", title: "Retro Arcade | Authentic Vintage Games", description: "Authenticated vintage games and consoles. Preserving gaming history.", images: ["https://img.b2bpic.net/free-photo/80-s-inspired-summer-activities-with-retro-aesthetic_23-2151425796.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}