import type { Metadata } from "next"; import { Epilogue } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const epilogue = Epilogue({ variable: "--font-epilogue", subsets: ["latin"], }); export const metadata: Metadata = { title: "Retro Arcade Vault - Vintage Games for Sord M5", description: "Buy authentic vintage games including Super Cobra for the Sord M5. Curated collection of rare retro gaming cartridges with verified authenticity.", keywords: "vintage games, Sord M5, Super Cobra, retro gaming, arcade games, game cartridges, classic gaming", robots: { index: true, follow: true }, openGraph: { title: "Retro Arcade Vault - Vintage Games for Sord M5", description: "Discover rare vintage games for the Sord M5 and classic systems. Authentic cartridges, verified condition, trusted by collectors.", siteName: "Retro Arcade Vault", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/retro-computer-desk-arrangement_23-2150118624.jpg", alt: "Vintage game collection" }] }, twitter: { card: "summary_large_image", title: "Retro Arcade Vault - Vintage Games", description: "Authentic vintage games for Sord M5 and retro systems", images: ["https://img.b2bpic.net/free-photo/retro-computer-desk-arrangement_23-2150118624.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}