import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Vitaliy The Glek - CS2 Flash Master", description: "Experience the legendary tournament moments of the greatest (worst) flash player in Counter-Strike 2 history preparing for the Major.", keywords: "CS2,CSGO,esports,Vitaliy Glek,flash,Counter-Strike,Major", openGraph: { title: "Vitaliy The Glek - CS2 Flash Master", description: "The most iconic flash moments in competitive Counter-Strike 2", siteName: "Vitaliy Glek", type: "website" }, twitter: { card: "summary_large_image", title: "Vitaliy The Glek - CS2 Flash Master", description: "Preparing for the Major. One flash at a time." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}