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: "VetalGlek | World's Best Flashbang Thrower", description: "Meet VetalGlek, the elite flashbang thrower dominating international competitions with record-breaking distances and unmatched precision.", keywords: ["flashbang thrower", "VetalGlek", "elite athlete", "throwing champion", "sports excellence"], metadataBase: new URL("https://vetalGlek.com"), alternates: { canonical: "https://vetalGlek.com" }, openGraph: { title: "VetalGlek | World's Best Flashbang Thrower", description: "Meet VetalGlek, the elite flashbang thrower dominating international competitions with record-breaking distances and unmatched precision.", url: "https://vetalGlek.com", siteName: "VetalGlek", type: "website" }, twitter: { card: "summary_large_image", title: "VetalGlek | World's Best Flashbang Thrower", description: "Meet VetalGlek, the elite flashbang thrower dominating international competitions with record-breaking distances and unmatched precision." }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}