import type { Metadata } from "next"; import { Fraunces } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const fraunces = Fraunces({ variable: "--font-fraunces", subsets: ["latin"], }); export const metadata: Metadata = { title: "LevelUp | Fast-Paced Mobile Gaming & Social Connection", description: "Join 50K+ players in immersive real-time battles. Quick thrills, ranked progression, and a thriving community. Download free on iOS & Android.", keywords: "mobile game, action gaming, multiplayer battles, casual gaming, competitive gaming, free game", metadataBase: new URL("https://levelupgaming.com"), robots: { index: true, follow: true }, openGraph: { title: "LevelUp | Level Up Your Fun with Every Play", description: "Join thousands of players in fast-paced action. Compete, progress, and connect.", type: "website", siteName: "LevelUp Games", images: [ { url: "https://img.b2bpic.net/free-photo/little-girls-outdoors-with-phones-case-with-pimples-pop-it-trendy-anti-stress-toy_169016-12806.jpg", alt: "LevelUp gameplay showcase" } ] }, twitter: { card: "summary_large_image", title: "LevelUp | Level Up Your Fun with Every Play", description: "Join 50K+ players. Fast-paced battles, ranked progression, social gaming.", images: ["https://img.b2bpic.net/free-photo/little-girls-outdoors-with-phones-case-with-pimples-pop-it-trendy-anti-stress-toy_169016-12806.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}