Merge version_1 into main #1
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,35 +93,35 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Valorant",
|
||||
description: "Tactical 5v5 competitive shooting. Watch professional teams battle in intense strategy-driven matches.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-valorant-esports-match-in-p-1773444119134-6dbc5f74.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-valorant-esports-match-in-p-1773444119134-6dbc5f74.png?_wi=1",
|
||||
imageAlt: "Valorant esports tournament"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Counter-Strike 2",
|
||||
description: "The legendary competitive FPS. Experience tactical team-based gameplay at the highest professional level.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/cs-go-professional-esports-tournament-in-1773444119803-af8cf6c0.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/cs-go-professional-esports-tournament-in-1773444119803-af8cf6c0.png?_wi=1",
|
||||
imageAlt: "Counter-Strike 2 professional match"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "League of Legends",
|
||||
description: "5v5 strategic MOBA action. Follow pro teams competing in epic battles with complex team coordination.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/league-of-legends-esports-tournament-pro-1773444119305-b9ac8b1d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/league-of-legends-esports-tournament-pro-1773444119305-b9ac8b1d.png?_wi=1",
|
||||
imageAlt: "League of Legends esports"
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Dota 2",
|
||||
description: "Complex strategy and team play. Experience one of esports' most popular competitive MOBAs.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/dota-2-professional-esports-tournament-t-1773444118965-642bf941.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/dota-2-professional-esports-tournament-t-1773444118965-642bf941.png?_wi=1",
|
||||
imageAlt: "Dota 2 professional tournament"
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Overwatch 2",
|
||||
description: "Hero-based team shooter excitement. Watch teams coordinate powerful abilities in high-octane matches.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/overwatch-esports-tournament-professiona-1773444119935-ffed6787.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/overwatch-esports-tournament-professiona-1773444119935-ffed6787.png?_wi=1",
|
||||
imageAlt: "Overwatch 2 esports match"
|
||||
}
|
||||
]}
|
||||
@@ -157,42 +157,42 @@ export default function HomePage() {
|
||||
id: "tournament-1",
|
||||
name: "Valorant Champions 2024",
|
||||
price: "March 15-20",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=1",
|
||||
imageAlt: "Valorant Champions tournament"
|
||||
},
|
||||
{
|
||||
id: "tournament-2",
|
||||
name: "CS2 World Finals",
|
||||
price: "April 1-10",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=2",
|
||||
imageAlt: "Counter-Strike 2 World Finals"
|
||||
},
|
||||
{
|
||||
id: "tournament-3",
|
||||
name: "League of Legends Worlds",
|
||||
price: "September 25-November 2",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=3",
|
||||
imageAlt: "League of Legends World Championship"
|
||||
},
|
||||
{
|
||||
id: "tournament-4",
|
||||
name: "The International (Dota 2)",
|
||||
price: "August 12-18",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=4",
|
||||
imageAlt: "The International Dota 2"
|
||||
},
|
||||
{
|
||||
id: "tournament-5",
|
||||
name: "Overwatch Champions",
|
||||
price: "May 5-12",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=5",
|
||||
imageAlt: "Overwatch Champions"
|
||||
},
|
||||
{
|
||||
id: "tournament-6",
|
||||
name: "Regional Qualifiers",
|
||||
price: "Ongoing Weekly",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=6",
|
||||
imageAlt: "Regional Qualifiers"
|
||||
}
|
||||
]}
|
||||
@@ -229,7 +229,7 @@ export default function HomePage() {
|
||||
value: "500+",
|
||||
title: "Active Tournaments",
|
||||
description: "Professional tournaments running globally",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=1",
|
||||
imageAlt: "Tournament statistics"
|
||||
},
|
||||
{
|
||||
@@ -237,7 +237,7 @@ export default function HomePage() {
|
||||
value: "$2.8B",
|
||||
title: "Prize Pool",
|
||||
description: "Total esports prize money awarded annually",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=2",
|
||||
imageAlt: "Prize pool statistics"
|
||||
},
|
||||
{
|
||||
@@ -245,7 +245,7 @@ export default function HomePage() {
|
||||
value: "150M+",
|
||||
title: "Global Viewers",
|
||||
description: "Esports fans watching tournaments worldwide",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=3",
|
||||
imageAlt: "Viewer statistics"
|
||||
},
|
||||
{
|
||||
@@ -253,7 +253,7 @@ export default function HomePage() {
|
||||
value: "10K+",
|
||||
title: "Professional Teams",
|
||||
description: "Professional teams competing globally",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=4",
|
||||
imageAlt: "Team statistics"
|
||||
}
|
||||
]}
|
||||
@@ -289,7 +289,7 @@ export default function HomePage() {
|
||||
name: "Team Vitality",
|
||||
role: "FPS Champions",
|
||||
description: "Leading Valorant and CS2 esports organization with multiple championship titles.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png?_wi=1",
|
||||
imageAlt: "Team Vitality"
|
||||
},
|
||||
{
|
||||
@@ -297,7 +297,7 @@ export default function HomePage() {
|
||||
name: "T1",
|
||||
role: "League Legends",
|
||||
description: "Legendary esports organization with iconic League of Legends dynasty.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=1",
|
||||
imageAlt: "T1 esports team"
|
||||
},
|
||||
{
|
||||
@@ -305,7 +305,7 @@ export default function HomePage() {
|
||||
name: "OG",
|
||||
role: "Dota 2 Legends",
|
||||
description: "Two-time The International champions dominating Dota 2 competitive scene.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png?_wi=2",
|
||||
imageAlt: "OG Dota 2 team"
|
||||
},
|
||||
{
|
||||
@@ -313,7 +313,7 @@ export default function HomePage() {
|
||||
name: "Sentinels",
|
||||
role: "Valorant Elite",
|
||||
description: "Valorant powerhouse with dominant regional and international performances.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=2",
|
||||
imageAlt: "Sentinels Valorant"
|
||||
},
|
||||
{
|
||||
@@ -321,7 +321,7 @@ export default function HomePage() {
|
||||
name: "FaZe Clan",
|
||||
role: "CS2 Competitors",
|
||||
description: "Historic FPS organization competing at the peak of Counter-Strike competition.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png?_wi=3",
|
||||
imageAlt: "FaZe Clan CS2"
|
||||
},
|
||||
{
|
||||
@@ -329,7 +329,7 @@ export default function HomePage() {
|
||||
name: "Liquid",
|
||||
role: "Multi-Game Winners",
|
||||
description: "Diverse esports organization with championships across multiple competitive titles.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=3",
|
||||
imageAlt: "Team Liquid esports"
|
||||
}
|
||||
]}
|
||||
@@ -367,7 +367,7 @@ export default function HomePage() {
|
||||
category: "Valorant",
|
||||
title: "Valorant Champions Group Stage",
|
||||
excerpt: "Professional teams compete in intense tactical 5v5 matches. Watch top strategies unfold live.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png?_wi=1",
|
||||
imageAlt: "Valorant championship broadcast",
|
||||
authorName: "GameArena",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/a-dynamic-esports-tournament-scene-with--1773444119731-528e1d50.png",
|
||||
@@ -378,7 +378,7 @@ export default function HomePage() {
|
||||
category: "CS2",
|
||||
title: "CS2 Regional Finals",
|
||||
excerpt: "Counter-Strike 2 teams battle for regional supremacy. Explosive action-packed gameplay.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png?_wi=2",
|
||||
imageAlt: "CS2 finals broadcast",
|
||||
authorName: "GameArena",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/a-dynamic-esports-tournament-scene-with--1773444119731-528e1d50.png",
|
||||
@@ -389,7 +389,7 @@ export default function HomePage() {
|
||||
category: "League",
|
||||
title: "LEC Spring Split",
|
||||
excerpt: "European League of Legends Championship. Strategic MOBA gameplay at the highest level.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png?_wi=3",
|
||||
imageAlt: "LEC broadcast",
|
||||
authorName: "GameArena",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/a-dynamic-esports-tournament-scene-with--1773444119731-528e1d50.png",
|
||||
@@ -400,7 +400,7 @@ export default function HomePage() {
|
||||
category: "Dota 2",
|
||||
title: "Dota Pro Circuit",
|
||||
excerpt: "Global Dota 2 competition. Watch teams deploy complex strategies in high-stakes matches.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-live-streaming-broa-1773444119822-f45131fe.png?_wi=4",
|
||||
imageAlt: "Dota Pro Circuit broadcast",
|
||||
authorName: "GameArena",
|
||||
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/a-dynamic-esports-tournament-scene-with--1773444119731-528e1d50.png",
|
||||
|
||||
@@ -65,7 +65,7 @@ export default function SchedulePage() {
|
||||
background={{
|
||||
variant: "animated-grid"
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=10"
|
||||
imageAlt="Tournament schedule calendar"
|
||||
mediaAnimation="blur-reveal"
|
||||
frameStyle="card"
|
||||
@@ -91,42 +91,42 @@ export default function SchedulePage() {
|
||||
id: "tournament-1",
|
||||
name: "Valorant Champions 2024",
|
||||
price: "March 15-20",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=11",
|
||||
imageAlt: "Valorant Champions tournament"
|
||||
},
|
||||
{
|
||||
id: "tournament-2",
|
||||
name: "CS2 World Finals",
|
||||
price: "April 1-10",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=12",
|
||||
imageAlt: "Counter-Strike 2 World Finals"
|
||||
},
|
||||
{
|
||||
id: "tournament-3",
|
||||
name: "League of Legends Worlds",
|
||||
price: "September 25-November 2",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=13",
|
||||
imageAlt: "League of Legends World Championship"
|
||||
},
|
||||
{
|
||||
id: "tournament-4",
|
||||
name: "The International (Dota 2)",
|
||||
price: "August 12-18",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=14",
|
||||
imageAlt: "The International Dota 2"
|
||||
},
|
||||
{
|
||||
id: "tournament-5",
|
||||
name: "Overwatch Champions",
|
||||
price: "May 5-12",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=15",
|
||||
imageAlt: "Overwatch Champions"
|
||||
},
|
||||
{
|
||||
id: "tournament-6",
|
||||
name: "Regional Qualifiers",
|
||||
price: "Ongoing Weekly",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=16",
|
||||
imageAlt: "Regional Qualifiers"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -65,7 +65,7 @@ export default function TeamsPage() {
|
||||
background={{
|
||||
variant: "rotated-rays-animated"
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=4"
|
||||
imageAlt="Esports team celebrating"
|
||||
mediaAnimation="blur-reveal"
|
||||
frameStyle="card"
|
||||
@@ -92,7 +92,7 @@ export default function TeamsPage() {
|
||||
name: "Team Vitality",
|
||||
role: "FPS Champions",
|
||||
description: "Leading Valorant and CS2 esports organization with multiple championship titles.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png?_wi=4",
|
||||
imageAlt: "Team Vitality"
|
||||
},
|
||||
{
|
||||
@@ -100,7 +100,7 @@ export default function TeamsPage() {
|
||||
name: "T1",
|
||||
role: "League Legends",
|
||||
description: "Legendary esports organization with iconic League of Legends dynasty.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=5",
|
||||
imageAlt: "T1 esports team"
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@ export default function TeamsPage() {
|
||||
name: "OG",
|
||||
role: "Dota 2 Legends",
|
||||
description: "Two-time The International champions dominating Dota 2 competitive scene.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png?_wi=5",
|
||||
imageAlt: "OG Dota 2 team"
|
||||
},
|
||||
{
|
||||
@@ -116,7 +116,7 @@ export default function TeamsPage() {
|
||||
name: "Sentinels",
|
||||
role: "Valorant Elite",
|
||||
description: "Valorant powerhouse with dominant regional and international performances.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=6",
|
||||
imageAlt: "Sentinels Valorant"
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function TeamsPage() {
|
||||
name: "FaZe Clan",
|
||||
role: "CS2 Competitors",
|
||||
description: "Historic FPS organization competing at the peak of Counter-Strike competition.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-esports-team-members-in-tea-1773444119631-01d91a1f.png?_wi=6",
|
||||
imageAlt: "FaZe Clan CS2"
|
||||
},
|
||||
{
|
||||
@@ -132,7 +132,7 @@ export default function TeamsPage() {
|
||||
name: "Liquid",
|
||||
role: "Multi-Game Winners",
|
||||
description: "Diverse esports organization with championships across multiple competitive titles.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-team-celebrating-victory-on-stag-1773444119647-1fa439c5.png?_wi=7",
|
||||
imageAlt: "Team Liquid esports"
|
||||
}
|
||||
]}
|
||||
@@ -170,7 +170,7 @@ export default function TeamsPage() {
|
||||
value: "10K+",
|
||||
title: "Professional Teams",
|
||||
description: "Active professional esports organizations worldwide",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=5",
|
||||
imageAlt: "Team statistics"
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@ export default function TeamsPage() {
|
||||
value: "50K+",
|
||||
title: "Pro Players",
|
||||
description: "Professional esports players competing globally",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=6",
|
||||
imageAlt: "Player statistics"
|
||||
},
|
||||
{
|
||||
@@ -186,7 +186,7 @@ export default function TeamsPage() {
|
||||
value: "$5.2B",
|
||||
title: "Career Earnings",
|
||||
description: "Total career earnings by professional teams and players",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=7",
|
||||
imageAlt: "Career earnings"
|
||||
},
|
||||
{
|
||||
@@ -194,7 +194,7 @@ export default function TeamsPage() {
|
||||
value: "150+",
|
||||
title: "Countries",
|
||||
description: "Nations represented in competitive esports",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/esports-analytics-dashboard-with-tournam-1773444119459-8e11a6d8.png?_wi=8",
|
||||
imageAlt: "Global teams"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function TournamentsPage() {
|
||||
description:
|
||||
"The premier international Valorant championship where the world's best teams compete for the championship title and substantial prize pool.",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-valorant-esports-match-in-p-1773444119134-6dbc5f74.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/professional-valorant-esports-match-in-p-1773444119134-6dbc5f74.png?_wi=2",
|
||||
imageAlt: "Valorant Champions tournament",
|
||||
},
|
||||
{
|
||||
@@ -68,7 +68,7 @@ export default function TournamentsPage() {
|
||||
description:
|
||||
"The ultimate CS2 championship bringing together regional champions to battle for global supremacy and the largest esports prize pool.",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/cs-go-professional-esports-tournament-in-1773444119803-af8cf6c0.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/cs-go-professional-esports-tournament-in-1773444119803-af8cf6c0.png?_wi=2",
|
||||
imageAlt: "Counter-Strike 2 World Finals",
|
||||
},
|
||||
{
|
||||
@@ -77,7 +77,7 @@ export default function TournamentsPage() {
|
||||
description:
|
||||
"The most prestigious MOBA tournament with teams from all regions competing in an epic international championship series.",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/league-of-legends-esports-tournament-pro-1773444119305-b9ac8b1d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/league-of-legends-esports-tournament-pro-1773444119305-b9ac8b1d.png?_wi=2",
|
||||
imageAlt: "League of Legends Worlds",
|
||||
},
|
||||
{
|
||||
@@ -86,7 +86,7 @@ export default function TournamentsPage() {
|
||||
description:
|
||||
"The legendary Dota 2 world championship with the highest prize pools in esports history. Watch teams fight for gaming glory.",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/dota-2-professional-esports-tournament-t-1773444118965-642bf941.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/dota-2-professional-esports-tournament-t-1773444118965-642bf941.png?_wi=2",
|
||||
imageAlt: "The International Dota 2",
|
||||
},
|
||||
{
|
||||
@@ -95,7 +95,7 @@ export default function TournamentsPage() {
|
||||
description:
|
||||
"Elite hero-based team shooter competition featuring the world's best Overwatch 2 teams in high-octane strategic battles.",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/overwatch-esports-tournament-professiona-1773444119935-ffed6787.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/overwatch-esports-tournament-professiona-1773444119935-ffed6787.png?_wi=2",
|
||||
imageAlt: "Overwatch Pro Championship",
|
||||
},
|
||||
]}
|
||||
@@ -130,7 +130,7 @@ export default function TournamentsPage() {
|
||||
name: "Valorant Champions Group Stage",
|
||||
price: "March 15-20, 2024",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=7",
|
||||
imageAlt: "Valorant schedule",
|
||||
},
|
||||
{
|
||||
@@ -138,7 +138,7 @@ export default function TournamentsPage() {
|
||||
name: "CS2 Europe Regional Finals",
|
||||
price: "April 1-10, 2024",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=8",
|
||||
imageAlt: "CS2 schedule",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function TournamentsPage() {
|
||||
name: "LEC Spring Finals",
|
||||
price: "May 22-26, 2024",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AuYLRjnhWnaZjwr0SUXUhoJPpR/digital-esports-tournament-schedule-cale-1773444120052-58b6382b.png?_wi=9",
|
||||
imageAlt: "LEC schedule",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user