diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..dd71575 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Source_Sans_3 } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "M80 Esports Gaming Cafe - Bangalore's Premier Gaming Arena", + description: "Experience premium esports gaming at M80 Esports in Bangalore. High-end gaming PCs, racing simulators, PS5 stations, tournaments, and competitive community. Book your gaming session today!", + keywords: "esports gaming cafe Bangalore, gaming PC rental, gaming lounge, Valorant, CS2, tournaments, gaming community", + metadataBase: new URL("https://m80esports.com"), + alternates: { + canonical: "https://m80esports.com", + }, + openGraph: { + title: "M80 Esports Gaming Cafe - Level Up Your Game", + description: "Bangalore's ultimate esports arena. Premium gaming rigs, tournaments, and thriving community. Open daily!", + url: "https://m80esports.com", + siteName: "M80 Esports", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/happy-man-playing-videogame-neon-illuminated-home-holding-controller_482257-124275.jpg", + alt: "M80 Esports Gaming Arena", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "M80 Esports Gaming Cafe Bangalore", + description: "Premium esports gaming experience with high-end rigs and competitive tournaments", + images: ["http://img.b2bpic.net/free-photo/happy-man-playing-videogame-neon-illuminated-home-holding-controller_482257-124275.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}