import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Poppins } 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 poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Game Access Center X - Secure Gaming Platform", description: "Access exclusive games, beta test features, and join a vibrant gaming community. Secure access control, 500+ games, and real-time events await.", keywords: "gaming platform, secure gaming, game library, beta testing, esports, gaming hub", metadataBase: new URL("https://gameaccesscenter.example.com"), openGraph: { title: "Game Access Center X", description: "The next generation secure gaming platform for passionate gamers worldwide.", type: "website", siteName: "Game Access Center X", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AddXDTs9uv0bxmVKtjAzbWZu9K/a-modern-gaming-platform-dashboard-with--1772926479584-561741e0.png", alt: "Game Access Center X platform showcase" } ] }, twitter: { card: "summary_large_image", title: "Game Access Center X - Beta Version 0.0.6", description: "Discover the future of secure gaming platforms with exclusive features and community engagement.", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AddXDTs9uv0bxmVKtjAzbWZu9K/a-modern-gaming-platform-dashboard-with--1772926479584-561741e0.png" ] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}