Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +67,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,7 +93,7 @@ export default function HomePage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
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=1"
|
||||
imageAlt="esports gaming tournament broadcast setup"
|
||||
mediaAnimation="blur-reveal"
|
||||
frameStyle="card"
|
||||
@@ -113,21 +113,21 @@ export default function HomePage() {
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Brawl Stars mobile game action gameplay",
|
||||
},
|
||||
]}
|
||||
@@ -150,7 +150,7 @@ export default function HomePage() {
|
||||
{
|
||||
title: "PUBG Mobile Pro Series",
|
||||
description: "International championship featuring top professional teams competing for $500,000 prize pool.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=1",
|
||||
imageAlt: "PUBG Tournament Live",
|
||||
buttonIcon: Play,
|
||||
buttonHref: "/tournaments/pubg-pro-series",
|
||||
@@ -158,7 +158,7 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Roblox Creator Clash",
|
||||
description: "Virtual world creators battle in custom-built game arenas with live streaming to millions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=2",
|
||||
imageAlt: "Roblox Tournament",
|
||||
buttonIcon: Eye,
|
||||
buttonHref: "/tournaments/roblox-creator-clash",
|
||||
@@ -166,7 +166,7 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Brawl Stars Global Championship",
|
||||
description: "Fastest-paced esports tournament with teams from 60+ countries in real-time multiplayer action.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=3",
|
||||
imageAlt: "Brawl Stars Championship",
|
||||
buttonIcon: Trophy,
|
||||
buttonHref: "/tournaments/brawlstars-global",
|
||||
@@ -212,7 +212,7 @@ export default function HomePage() {
|
||||
category: "PUBG Mobile",
|
||||
title: "PUBG Pro Series Finals",
|
||||
excerpt: "Top 16 teams compete for championship title and $200,000 grand prize. Watch live on all major platforms.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=4",
|
||||
imageAlt: "PUBG Pro Series Finals",
|
||||
authorName: "Tournament Admin",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19148.jpg",
|
||||
@@ -223,7 +223,7 @@ export default function HomePage() {
|
||||
category: "Roblox",
|
||||
title: "Creator Clash Spring Season",
|
||||
excerpt: "100 content creators showcase their game design skills in real-time competitive battles.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=5",
|
||||
imageAlt: "Roblox Creator Clash",
|
||||
authorName: "Gaming Events",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-playing-videogame_23-2149349994.jpg",
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
category: "Brawl Stars",
|
||||
title: "Global Championship Qualifiers",
|
||||
excerpt: "Regional playoffs begin. Teams compete for slots in the international championship tournament.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=6",
|
||||
imageAlt: "Brawl Stars Qualifiers",
|
||||
authorName: "Brawl Esports",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-playing-videogame_23-2149349994.jpg",
|
||||
@@ -245,7 +245,7 @@ export default function HomePage() {
|
||||
category: "Multi-Game",
|
||||
title: "Holiday Gaming Festival",
|
||||
excerpt: "Multi-game tournament featuring PUBG Mobile, Roblox, and Brawl Stars with combined $1M prize pool.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=7",
|
||||
imageAlt: "Holiday Gaming Festival",
|
||||
authorName: "GameHub Events",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19148.jpg",
|
||||
@@ -271,7 +271,7 @@ export default function HomePage() {
|
||||
category: "Registration",
|
||||
title: "How do I register for a tournament?",
|
||||
excerpt: "Visit the tournament page you're interested in and click 'Register Team.' Fill out your team details, verify email, and you're ready to compete.",
|
||||
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=2",
|
||||
imageAlt: "Tournament Registration",
|
||||
authorName: "Support Team",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-playing-videogame_23-2149349994.jpg",
|
||||
@@ -282,7 +282,7 @@ export default function HomePage() {
|
||||
category: "System Requirements",
|
||||
title: "What are the minimum system requirements?",
|
||||
excerpt: "For mobile: iOS 12+ or Android 8+. For PC: Windows 10/11 with at least 4GB RAM. Internet speed should be minimum 5 Mbps for smooth gameplay.",
|
||||
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=3",
|
||||
imageAlt: "System Requirements",
|
||||
authorName: "Technical Support",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-playing-videogame_23-2149349994.jpg",
|
||||
|
||||
@@ -94,7 +94,7 @@ export default function SchedulePage() {
|
||||
category: "PUBG Mobile",
|
||||
title: "PUBG Pro Series Finals",
|
||||
excerpt: "Top 16 teams compete for championship title and $200,000 grand prize. Watch live on all major platforms.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=11",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
authorName: "Tournament Admin",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/team-teenage-gamers-plays-multiplayer-video-game-pc-gaming-club_613910-19148.jpg",
|
||||
@@ -105,7 +105,7 @@ export default function SchedulePage() {
|
||||
category: "Roblox",
|
||||
title: "Creator Clash Spring Season",
|
||||
excerpt: "100 content creators showcase their game design skills in real-time competitive battles.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=12",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
authorName: "Gaming Events",
|
||||
authorAvatar: "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",
|
||||
@@ -116,7 +116,7 @@ export default function SchedulePage() {
|
||||
category: "Brawl Stars",
|
||||
title: "Global Championship Qualifiers",
|
||||
excerpt: "Regional playoffs begin. Teams compete for slots in the international championship tournament.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=13",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
authorName: "Brawl Esports",
|
||||
authorAvatar: "http://img.b2bpic.net/free-psd/american-football-championship-template_23-2151933189.jpg",
|
||||
@@ -127,7 +127,7 @@ export default function SchedulePage() {
|
||||
category: "Multi-Game",
|
||||
title: "Holiday Gaming Festival",
|
||||
excerpt: "Multi-game tournament featuring PUBG Mobile, Roblox, and Brawl Stars with combined $1M prize pool.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=14",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
authorName: "GameHub Events",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-playing-videogame_23-2149349994.jpg",
|
||||
@@ -154,7 +154,7 @@ export default function SchedulePage() {
|
||||
{
|
||||
title: "PUBG Regional Playoffs",
|
||||
description: "32 teams from 4 regions competing for a combined $100,000 prize pool. Stream live on Twitch and YouTube.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=15",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
buttonIcon: "Play",
|
||||
buttonHref: "/tournaments/pubg-playoffs",
|
||||
@@ -162,7 +162,7 @@ export default function SchedulePage() {
|
||||
{
|
||||
title: "Roblox Developer Showdown",
|
||||
description: "Creative developers battle with custom game environments. First 8-hour tournament with live world-building.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=16",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
buttonIcon: "Eye",
|
||||
buttonHref: "/tournaments/roblox-showdown",
|
||||
@@ -170,7 +170,7 @@ export default function SchedulePage() {
|
||||
{
|
||||
title: "Brawl Stars Regional Series",
|
||||
description: "3v3 competitive matches with 150 teams across Asia-Pacific region. Watch the fastest esport action.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=17",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
buttonIcon: "Trophy",
|
||||
buttonHref: "/tournaments/brawlstars-regional",
|
||||
|
||||
@@ -90,7 +90,7 @@ export default function TournamentsPage() {
|
||||
{
|
||||
title: "PUBG Mobile Pro Series",
|
||||
description: "International championship featuring top professional teams competing for $500,000 prize pool.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=8",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
buttonIcon: "Play",
|
||||
buttonHref: "/tournaments/pubg-pro-series",
|
||||
@@ -98,7 +98,7 @@ export default function TournamentsPage() {
|
||||
{
|
||||
title: "Roblox Creator Clash",
|
||||
description: "Virtual world creators battle in custom-built game arenas with live streaming to millions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=9",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
buttonIcon: "Eye",
|
||||
buttonHref: "/tournaments/roblox-creator-clash",
|
||||
@@ -106,7 +106,7 @@ export default function TournamentsPage() {
|
||||
{
|
||||
title: "Brawl Stars Global Championship",
|
||||
description: "Fastest-paced esports tournament with teams from 60+ countries in real-time multiplayer action.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-sport-streamer-being-upset-losing-space-shoot-video-game-championship-playing-computer_482257-2102.jpg?_wi=10",
|
||||
imageAlt: "gaming tournament live broadcast stream",
|
||||
buttonIcon: "Trophy",
|
||||
buttonHref: "/tournaments/brawlstars-global",
|
||||
|
||||
Reference in New Issue
Block a user