import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "OddsPlay - Live NBA Odds & Betting Lines", description: "Real-time NBA odds, team spreads, and player props. Faster updates than Bet365 and PrizePicks. Get live lines for every game.", keywords: "NBA odds, basketball betting, live odds, player props, sports betting", robots: { index: true, follow: true }, openGraph: { title: "OddsPlay - Live NBA Odds & Betting Lines", description: "Real-time NBA odds with lightning-fast updates. Team spreads, moneylines, and player props in one clean platform.", siteName: "OddsPlay", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766169056621-4rew1u3x.jpg", alt: "Live NBA Betting Odds" } ] }, twitter: { card: "summary_large_image", title: "OddsPlay - Live NBA Odds", description: "Real-time odds updated faster than any competitor", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766169056621-4rew1u3x.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}