Merge version_1 into main #1
@@ -183,7 +183,7 @@ export default function DashboardPage() {
|
||||
role: "Dashboard Power User",
|
||||
testimonial: "The dashboard gives me complete control over my gaming career. Easy tournament discovery, instant stats, and seamless wallet management.",
|
||||
icon: TrendingUp,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -191,7 +191,7 @@ export default function DashboardPage() {
|
||||
role: "Aspiring Pro Gamer",
|
||||
testimonial: "Dashboard interface is intuitive and powerful. I can track my progress, manage my earnings, and plan my tournament strategy all in one place.",
|
||||
icon: Target,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-gaming-player-testi-1773235083670-9663741d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-gaming-player-testi-1773235083670-9663741d.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -199,7 +199,7 @@ export default function DashboardPage() {
|
||||
role: "Competitive Streamer",
|
||||
testimonial: "Dashboard features are exactly what competitive gamers need. Real-time updates, match history, and automatic payment tracking make this platform stand out.",
|
||||
icon: Zap,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235084505-3380681e.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235084505-3380681e.png?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Dashboard User Experiences"
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } 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 { Nunito } 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 nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Faber Esports - Professional Mobile Gaming Tournaments",
|
||||
description: "Join India's premium esports tournament platform. Compete in BGMI, PUBG Mobile, Free Fire with secure payments, massive prize pools, and professional tournament management.",
|
||||
keywords: "esports tournaments, BGMI tournaments, PUBG Mobile, Free Fire, gaming tournaments India, online gaming competitions, esports platform, gaming prizes",
|
||||
metadataBase: new URL("https://faberesports.com"),
|
||||
alternates: {
|
||||
canonical: "https://faberesports.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Faber Esports - Compete. Conquer. Win.",
|
||||
description: "Join thousands of competitive gamers in India's largest mobile esports tournament platform with ₹5+ Crore in prizes.",
|
||||
url: "https://faberesports.com",
|
||||
siteName: "Faber Esports",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/epic-esports-tournament-gaming-backgroun-1773235085055-5ef7a839.png",
|
||||
alt: "Faber Esports Tournament Platform",
|
||||
},
|
||||
],
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Faber Esports - Professional Gaming Tournaments",
|
||||
description: "Compete in BGMI, PUBG Mobile, Free Fire tournaments. Secure payments, live leaderboards, professional management.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/epic-esports-tournament-gaming-backgroun-1773235085055-5ef7a839.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={`${nunito.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -180,7 +180,7 @@ export default function LeaderboardPage() {
|
||||
role: "Leaderboard #1 Player",
|
||||
testimonial: "The transparent ranking system on Faber keeps me motivated. Real-time updates and fair play policies make this the best competitive platform.",
|
||||
icon: Trophy,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -188,7 +188,7 @@ export default function LeaderboardPage() {
|
||||
role: "Rising Competitive Star",
|
||||
testimonial: "Climbing the leaderboard on Faber has changed my gaming career. Professional management and consistent payouts are incredible.",
|
||||
icon: Flame,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -196,7 +196,7 @@ export default function LeaderboardPage() {
|
||||
role: "Tournament Veteran",
|
||||
testimonial: "Best leaderboard system I've experienced. Fair rankings, quick updates, and genuine competition from top-tier players.",
|
||||
icon: Zap,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png?_wi=4",
|
||||
},
|
||||
]}
|
||||
title="Leaderboard Success Stories"
|
||||
|
||||
@@ -119,7 +119,7 @@ export default function HomePage() {
|
||||
"Finally, a platform that feels like it's built by gamers, for gamers. The tournament experience is seamless.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png?_wi=1",
|
||||
imageAlt: "Pro Gamer Elite - Champion Player",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function HomePage() {
|
||||
"Faber Esports has revolutionized how I participate in tournaments. Professional, secure, and truly competitive.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png?_wi=1",
|
||||
imageAlt: "Competitive Beast - Tournament Winner",
|
||||
},
|
||||
{
|
||||
@@ -139,7 +139,7 @@ export default function HomePage() {
|
||||
"Best platform I've used for mobile esports. Community is amazing and payouts are reliable.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png?_wi=1",
|
||||
imageAlt: "Rising Star Gamer - Emerging Talent",
|
||||
},
|
||||
{
|
||||
@@ -149,13 +149,13 @@ export default function HomePage() {
|
||||
"Professional-grade tournament management with gamer-friendly features. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png?_wi=1",
|
||||
imageAlt: "Veteran Competitor - Season Champion",
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
imagePosition="right"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/epic-esports-tournament-gaming-backgroun-1773235085055-5ef7a839.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/epic-esports-tournament-gaming-backgroun-1773235085055-5ef7a839.png?_wi=1"
|
||||
imageAlt="Faber Esports Tournament Arena"
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
@@ -231,7 +231,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.2k Players",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png?_wi=1",
|
||||
imageAlt: "BGMI Elite Squad Championship",
|
||||
},
|
||||
{
|
||||
@@ -242,7 +242,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "800 Players",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png?_wi=1",
|
||||
imageAlt: "PUBG Mobile Royale Domination Cup",
|
||||
},
|
||||
{
|
||||
@@ -253,7 +253,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.8k Players",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png?_wi=1",
|
||||
imageAlt: "Free Fire Commando Combat League",
|
||||
},
|
||||
]}
|
||||
@@ -278,7 +278,7 @@ export default function HomePage() {
|
||||
tag="Why Us"
|
||||
tagIcon={Trophy}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png?_wi=1"
|
||||
imageAlt="Faber Esports Tournament Management System"
|
||||
buttons={[
|
||||
{
|
||||
@@ -307,7 +307,7 @@ export default function HomePage() {
|
||||
"Experience the ultimate squad-based battle royale competition. BGMI tournaments feature massive prize pools, professional team circuits, and ranked matchmaking systems for competitive players.",
|
||||
tags: ["Squad", "Battle Royale", "500+ Players"],
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png?_wi=2",
|
||||
imageAlt: "BGMI Battlegrounds",
|
||||
},
|
||||
{
|
||||
@@ -318,7 +318,7 @@ export default function HomePage() {
|
||||
"Join the world's largest mobile battle royale esports community. PUBG Mobile on Faber offers international-standard tournaments, cross-region competitions, and path to professional esports careers.",
|
||||
tags: ["International", "Professional", "High Prizes"],
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png?_wi=2",
|
||||
imageAlt: "PUBG Mobile Masters",
|
||||
},
|
||||
{
|
||||
@@ -329,7 +329,7 @@ export default function HomePage() {
|
||||
"Fast-action battle royale gaming at its finest. Free Fire tournaments on Faber combine accessibility with competitive depth, featuring multiple game modes and skill-based tier matchmaking.",
|
||||
tags: ["Fast Action", "Accessibility", "Skill-Based"],
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png?_wi=2",
|
||||
imageAlt: "Free Fire Legends",
|
||||
},
|
||||
]}
|
||||
@@ -355,7 +355,7 @@ export default function HomePage() {
|
||||
"Faber Esports is the best tournament platform I've used. Fast payouts, zero-lag servers, and genuine community of competitive players.",
|
||||
icon: Trophy,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png?_wi=2",
|
||||
imageAlt: "Aditya Sharma",
|
||||
},
|
||||
{
|
||||
@@ -366,7 +366,7 @@ export default function HomePage() {
|
||||
"Professional management, transparent rules, and life-changing prize pools. This is what esports should look like in India.",
|
||||
icon: Flame,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png?_wi=2",
|
||||
imageAlt: "Priya Gupta",
|
||||
},
|
||||
{
|
||||
@@ -377,7 +377,7 @@ export default function HomePage() {
|
||||
"The payment system is incredibly secure and reliable. I've won ₹2 lakhs in tournaments here and received every rupee on time.",
|
||||
icon: Zap,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png?_wi=2",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
},
|
||||
{
|
||||
@@ -388,7 +388,7 @@ export default function HomePage() {
|
||||
"Faber gives aspiring pros like me the platform to build a career in esports. The infrastructure is world-class.",
|
||||
icon: Star,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png?_wi=2",
|
||||
imageAlt: "Neha Singh",
|
||||
},
|
||||
{
|
||||
@@ -399,7 +399,7 @@ export default function HomePage() {
|
||||
"Best esports platform for streaming tournaments and building community. My followers love the competitive ecosystem.",
|
||||
icon: Flame,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235084505-3380681e.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235084505-3380681e.png?_wi=1",
|
||||
imageAlt: "Vikram Patel",
|
||||
},
|
||||
{
|
||||
@@ -410,7 +410,7 @@ export default function HomePage() {
|
||||
"Faber Esports gave me the opportunity to prove myself against top-tier competition. Grateful for this amazing community.",
|
||||
icon: Zap,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-gaming-player-testi-1773235083670-9663741d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-gaming-player-testi-1773235083670-9663741d.png?_wi=1",
|
||||
imageAlt: "Sarah Khan",
|
||||
},
|
||||
]}
|
||||
@@ -462,7 +462,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png?_wi=2"
|
||||
imageAlt="Faber Esports Community"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
@@ -101,7 +101,7 @@ export default function TournamentDetailsPage() {
|
||||
handle: "Champion Player",
|
||||
testimonial: "Finally, a platform that feels like it's built by gamers, for gamers. The tournament experience is seamless.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png?_wi=5",
|
||||
imageAlt: "Pro Gamer Elite",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function TournamentDetailsPage() {
|
||||
handle: "Tournament Winner",
|
||||
testimonial: "Faber Esports has revolutionized how I participate in tournaments. Professional, secure, and truly competitive.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png?_wi=5",
|
||||
imageAlt: "Competitive Beast",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ export default function TournamentDetailsPage() {
|
||||
handle: "Emerging Talent",
|
||||
testimonial: "Best platform I've used for mobile esports. Community is amazing and payouts are reliable.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png?_wi=5",
|
||||
imageAlt: "Rising Star Gamer",
|
||||
},
|
||||
{
|
||||
@@ -125,13 +125,13 @@ export default function TournamentDetailsPage() {
|
||||
handle: "Season Champion",
|
||||
testimonial: "Professional-grade tournament management with gamer-friendly features. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png?_wi=4",
|
||||
imageAlt: "Veteran Competitor",
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
imagePosition="right"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/epic-esports-tournament-gaming-backgroun-1773235085055-5ef7a839.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/epic-esports-tournament-gaming-backgroun-1773235085055-5ef7a839.png?_wi=2"
|
||||
imageAlt="Faber Esports Tournament Arena"
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
@@ -206,7 +206,7 @@ export default function TournamentDetailsPage() {
|
||||
price: "₹500 Entry",
|
||||
rating: 5,
|
||||
reviewCount: "1.2k Players",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png?_wi=4",
|
||||
imageAlt: "BGMI Elite Squad Championship",
|
||||
},
|
||||
{
|
||||
@@ -216,7 +216,7 @@ export default function TournamentDetailsPage() {
|
||||
price: "₹750 Entry",
|
||||
rating: 5,
|
||||
reviewCount: "800 Players",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png?_wi=4",
|
||||
imageAlt: "PUBG Mobile Royale Domination Cup",
|
||||
},
|
||||
{
|
||||
@@ -226,7 +226,7 @@ export default function TournamentDetailsPage() {
|
||||
price: "₹300 Entry",
|
||||
rating: 5,
|
||||
reviewCount: "1.8k Players",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png?_wi=4",
|
||||
imageAlt: "Free Fire Commando Combat League",
|
||||
},
|
||||
]}
|
||||
@@ -251,7 +251,7 @@ export default function TournamentDetailsPage() {
|
||||
tag="Why Us"
|
||||
tagIcon={Trophy}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png?_wi=3"
|
||||
imageAlt="Faber Esports Tournament Management System"
|
||||
buttons={[
|
||||
{
|
||||
@@ -278,7 +278,7 @@ export default function TournamentDetailsPage() {
|
||||
author: "Battle Royale Gaming",
|
||||
description: "Experience the ultimate squad-based battle royale competition. BGMI tournaments feature massive prize pools, professional team circuits, and ranked matchmaking systems for competitive players.",
|
||||
tags: ["Squad", "Battle Royale", "500+ Players"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png?_wi=5",
|
||||
imageAlt: "BGMI Battlegrounds",
|
||||
},
|
||||
{
|
||||
@@ -287,7 +287,7 @@ export default function TournamentDetailsPage() {
|
||||
author: "Mobile Esports Authority",
|
||||
description: "Join the world's largest mobile battle royale esports community. PUBG Mobile on Faber offers international-standard tournaments, cross-region competitions, and path to professional esports careers.",
|
||||
tags: ["International", "Professional", "High Prizes"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png?_wi=5",
|
||||
imageAlt: "PUBG Mobile Masters",
|
||||
},
|
||||
{
|
||||
@@ -296,7 +296,7 @@ export default function TournamentDetailsPage() {
|
||||
author: "Fast-Paced Combat Gaming",
|
||||
description: "Fast-action battle royale gaming at its finest. Free Fire tournaments on Faber combine accessibility with competitive depth, featuring multiple game modes and skill-based tier matchmaking.",
|
||||
tags: ["Fast Action", "Accessibility", "Skill-Based"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png?_wi=5",
|
||||
imageAlt: "Free Fire Legends",
|
||||
},
|
||||
]}
|
||||
@@ -320,7 +320,7 @@ export default function TournamentDetailsPage() {
|
||||
role: "BGMI Pro Player",
|
||||
testimonial: "Faber Esports is the best tournament platform I've used. Fast payouts, zero-lag servers, and genuine community of competitive players.",
|
||||
icon: Trophy,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png?_wi=6",
|
||||
imageAlt: "Aditya Sharma",
|
||||
},
|
||||
{
|
||||
@@ -329,7 +329,7 @@ export default function TournamentDetailsPage() {
|
||||
role: "PUBG Mobile Champion",
|
||||
testimonial: "Professional management, transparent rules, and life-changing prize pools. This is what esports should look like in India.",
|
||||
icon: Flame,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png?_wi=6",
|
||||
imageAlt: "Priya Gupta",
|
||||
},
|
||||
{
|
||||
@@ -338,7 +338,7 @@ export default function TournamentDetailsPage() {
|
||||
role: "Free Fire Competitor",
|
||||
testimonial: "The payment system is incredibly secure and reliable. I've won ₹2 lakhs in tournaments here and received every rupee on time.",
|
||||
icon: Zap,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png?_wi=6",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
},
|
||||
{
|
||||
@@ -347,7 +347,7 @@ export default function TournamentDetailsPage() {
|
||||
role: "Tournament Organizer",
|
||||
testimonial: "Faber gives aspiring pros like me the platform to build a career in esports. The infrastructure is world-class.",
|
||||
icon: Star,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084632-9e8ef1f1.png?_wi=5",
|
||||
imageAlt: "Neha Singh",
|
||||
},
|
||||
{
|
||||
@@ -356,7 +356,7 @@ export default function TournamentDetailsPage() {
|
||||
role: "Content Creator",
|
||||
testimonial: "Best esports platform for streaming tournaments and building community. My followers love the competitive ecosystem.",
|
||||
icon: Trophy,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235084505-3380681e.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235084505-3380681e.png?_wi=3",
|
||||
imageAlt: "Vikram Patel",
|
||||
},
|
||||
{
|
||||
@@ -365,7 +365,7 @@ export default function TournamentDetailsPage() {
|
||||
role: "Emerging Esports Talent",
|
||||
testimonial: "Faber Esports gave me the opportunity to prove myself against top-tier competition. Grateful for this amazing community.",
|
||||
icon: Flame,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-gaming-player-testi-1773235083670-9663741d.png",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-gaming-player-testi-1773235083670-9663741d.png?_wi=3",
|
||||
imageAlt: "Sarah Khan",
|
||||
},
|
||||
]}
|
||||
@@ -417,7 +417,7 @@ export default function TournamentDetailsPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/modern-tournament-management-dashboard-w-1773235085335-c935c9e9.png?_wi=4"
|
||||
imageAlt="Faber Esports Community"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
@@ -107,7 +107,7 @@ export default function TournamentsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.2k Players",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/bgmi-battlegrounds-mobile-india-game-sho-1773235084955-5a491238.png?_wi=3",
|
||||
imageAlt: "BGMI Elite Squad Championship",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function TournamentsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "800 Players",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/pubg-mobile-game-showcase-with-intense-b-1773235084577-0b35fc43.png?_wi=3",
|
||||
imageAlt: "PUBG Mobile Royale Domination Cup",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function TournamentsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.8k Players",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/free-fire-mobile-game-showcase-with-fast-1773235084539-aba00604.png?_wi=3",
|
||||
imageAlt: "Free Fire Commando Combat League",
|
||||
},
|
||||
]}
|
||||
@@ -205,7 +205,7 @@ export default function TournamentsPage() {
|
||||
"Won ₹5 lakhs in my first major tournament here. The competition was intense but fair. Faber handled everything professionally.",
|
||||
icon: Trophy,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-portrait-for-1773235084659-bb56f2d7.png?_wi=3",
|
||||
imageAlt: "Arjun Reddy",
|
||||
},
|
||||
{
|
||||
@@ -216,7 +216,7 @@ export default function TournamentsPage() {
|
||||
"Multiple tournament wins across seasons. The bracket system is transparent and matchmaking ensures competitive balance.",
|
||||
icon: Flame,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-testimonial--1773235084711-7c209321.png?_wi=3",
|
||||
imageAlt: "Meera Das",
|
||||
},
|
||||
{
|
||||
@@ -227,7 +227,7 @@ export default function TournamentsPage() {
|
||||
"Consistent tournament structure and reliable payouts. Faber is my go-to platform for serious competitive gaming.",
|
||||
icon: Star,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AniZYSGI7fOLw18dFtXUc2PJnK/professional-esports-player-avatar-for-t-1773235086212-a643af28.png?_wi=3",
|
||||
imageAlt: "Rohan Singh",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user