import type { Metadata } from "next"; import { Nunito } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); export const metadata: Metadata = { title: "In Portal - Revolutionary Portal Puzzle Game", description: "Experience mind-bending portal puzzles in In Portal. Solve intricate challenges, explore mysterious dimensions, and join 500K+ players. Download now.", keywords: "portal game, puzzle game, sci-fi gaming, first-person puzzle, video game", metadataBase: new URL("https://inportal.game"), alternates: { canonical: "https://inportal.game" }, openGraph: { title: "In Portal - Portal Puzzle Adventure", description: "Step into a world where portals reshape reality. Solve mind-bending puzzles and discover hidden dimensions.", url: "https://inportal.game", siteName: "In Portal", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/rendering-abstract-futuristic-background-with-glowing-neon-blue-lights_181624-26042.jpg", alt: "In Portal - immersive portal puzzle game" }] }, twitter: { card: "summary_large_image", title: "In Portal - Portal Puzzle Adventure", description: "Revolutionary portal-based puzzle game. 500K+ active players. Download today.", images: ["https://img.b2bpic.net/free-photo/rendering-abstract-futuristic-background-with-glowing-neon-blue-lights_181624-26042.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}