diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 41f1e85..5a67020 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ 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: "GameArena - Live Esports Tournaments & Gaming Events", + description: "Watch live esports tournaments, follow pro teams, and explore competitive gaming events. Your ultimate esports destination.", + keywords: "esports, gaming tournaments, live streams, competitive gaming, pro teams, Valorant, CS2, League of Legends", + metadataBase: new URL("https://gamearena.gg"), + alternates: { + canonical: "https://gamearena.gg" + }, + openGraph: { + title: "GameArena - Live Esports Tournaments", + description: "Watch live esports tournaments and competitive gaming events", + url: "https://gamearena.gg", + siteName: "GameArena", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/a-dynamic-esports-tournament-scene-with--1773444119731-528e1d50.png", + alt: "A dynamic esports tournament scene with professional gamers at gaming rigs, bright blue and purple l" + } + ], + type: "website" + }, + twitter: { + card: "summary_large_image", + title: "GameArena - Live Esports", + description: "Watch live tournaments and follow your favorite teams", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/a-dynamic-esports-tournament-scene-with--1773444119731-528e1d50.png" + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}