diff --git a/src/app/games/page.tsx b/src/app/games/page.tsx index fddc729..c47c439 100644 --- a/src/app/games/page.tsx +++ b/src/app/games/page.tsx @@ -90,7 +90,7 @@ export default function GamesPage() { ]} buttonAnimation="slide-up" layoutOrder="reverse" - imageSrc="http://img.b2bpic.net/free-photo/nervous-woman-screaming-husband-while-he-is-playing-space-shooter-videogame-rgb-powerful-computer-streaming-online-competition-pro-cyber-with-headset-performing-virtual-tournament_482257-12460.jpg" + imageSrc="http://img.b2bpic.net/free-photo/nervous-woman-screaming-husband-while-he-is-playing-space-shooter-videogame-rgb-powerful-computer-streaming-online-competition-pro-cyber-with-headset-performing-virtual-tournament_482257-12460.jpg?_wi=2" imageAlt="Popular Gaming Titles" mediaAnimation="blur-reveal" frameStyle="card" @@ -107,35 +107,35 @@ export default function GamesPage() { id: "pubg-mobile", name: "PUBG Mobile", price: "Free to Play", - imageSrc: "http://img.b2bpic.net/free-photo/soldier-with-gun-his-hand-blue-background_1268-28589.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/soldier-with-gun-his-hand-blue-background_1268-28589.jpg?_wi=2", imageAlt: "PUBG Mobile battle royale gameplay", }, { id: "roblox", name: "Roblox", price: "Free to Play", - imageSrc: "http://img.b2bpic.net/free-photo/nervous-woman-screaming-husband-while-he-is-playing-space-shooter-videogame-rgb-powerful-computer-streaming-online-competition-pro-cyber-with-headset-performing-virtual-tournament_482257-12460.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/nervous-woman-screaming-husband-while-he-is-playing-space-shooter-videogame-rgb-powerful-computer-streaming-online-competition-pro-cyber-with-headset-performing-virtual-tournament_482257-12460.jpg?_wi=3", imageAlt: "Roblox gaming platform virtual world", }, { id: "brawlstars", name: "Brawl Stars", price: "Free to Play", - imageSrc: "http://img.b2bpic.net/free-psd/american-football-championship-template_23-2151933189.jpg", + imageSrc: "http://img.b2bpic.net/free-psd/american-football-championship-template_23-2151933189.jpg?_wi=2", imageAlt: "Brawl Stars mobile game action gameplay", }, { id: "codmobile", name: "Call of Duty Mobile", price: "Free to Play", - imageSrc: "http://img.b2bpic.net/free-photo/soldier-with-gun-his-hand-blue-background_1268-28589.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/soldier-with-gun-his-hand-blue-background_1268-28589.jpg?_wi=3", imageAlt: "Call of Duty Mobile competitive gameplay", }, { id: "freefire", name: "Free Fire", price: "Free to Play", - imageSrc: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19148.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19148.jpg?_wi=4", imageAlt: "Free Fire battle royale action", }, { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..042d1ff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,50 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "GameHub Pro - Esports Tournaments & Gaming Events", + description: "Discover esports tournaments across PUBG Mobile, Roblox, Brawl Stars & more. Live broadcasts, competitive gaming events, and global prize pools.", + keywords: "esports tournaments, gaming competitions, PUBG Mobile, Roblox, Brawl Stars, competitive gaming, live broadcasts, gaming events, prize pools", + openGraph: { + title: "GameHub Pro - Gaming Tournaments & Competitions", + description: "Join millions of competitive gamers worldwide. Participate in tournaments, watch live broadcasts, and compete for prizes.", + siteName: "GameHub Pro", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "GameHub Pro - Esports Tournaments", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +53,9 @@ export default function RootLayout({ return ( - + {children}