Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-03-07 12:32:45 +00:00
2 changed files with 58 additions and 250 deletions

View File

@@ -7,7 +7,7 @@ import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Activity, TrendingUp, Heart } from "lucide-react";
import { Activity, TrendingUp, Heart, Clock, Zap } from "lucide-react";
export default function LiveScoresPage() {
return (
@@ -35,9 +35,7 @@ export default function LiveScoresPage() {
{ name: "Teams", id: "teams" },
]}
button={{
text: "Watch Live",
href: "#live-scores",
}}
text: "Watch Live", href: "#live-scores"}}
/>
</div>
@@ -55,23 +53,11 @@ export default function LiveScoresPage() {
animationType="slide-up"
features={[
{
title: "Live Score Tracking",
description: "Real-time updates with every ball bowled, runs scored, and wickets fallen. Synchronized across all devices with zero delay.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/modern-mobile-and-web-interface-showing--1772886598790-0a5851b3.png?_wi=2",
imageAlt: "Live Score Interface",
},
title: "Live Score Tracking", description: "Real-time updates with every ball bowled, runs scored, and wickets fallen. Synchronized across all devices with zero delay.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/modern-mobile-and-web-interface-showing--1772886598790-0a5851b3.png", imageAlt: "Live Score Interface"},
{
title: "Ball-by-Ball Commentary",
description: "Detailed play-by-play commentary from expert cricket analysts with insights on every delivery and strategic moments.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/text-based-or-audio-commentary-feed-inte-1772886598935-7ade087d.png?_wi=2",
imageAlt: "Commentary Feed",
},
title: "Ball-by-Ball Commentary", description: "Detailed play-by-play commentary from expert cricket analysts with insights on every delivery and strategic moments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/text-based-or-audio-commentary-feed-inte-1772886598935-7ade087d.png", imageAlt: "Commentary Feed"},
{
title: "Live Notifications",
description: "Get instant push notifications for wickets, milestones, and match updates. Customize alerts for your favorite teams and players.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/push-notification-system-interface-showi-1772886598814-c2a33364.png?_wi=2",
imageAlt: "Notification System",
},
title: "Live Notifications", description: "Get instant push notifications for wickets, milestones, and match updates. Customize alerts for your favorite teams and players.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/push-notification-system-interface-showi-1772886598814-c2a33364.png", imageAlt: "Notification System"},
]}
/>
</div>
@@ -90,32 +76,16 @@ export default function LiveScoresPage() {
animationType="slide-up"
metrics={[
{
id: "1",
value: "287",
title: "Runs Scored",
description: "Current batting team total with live run rate",
icon: "TrendingUp",
id: "1", value: "287", title: "Runs Scored", description: "Current batting team total with live run rate", icon: TrendingUp,
},
{
id: "2",
value: "5",
title: "Wickets Down",
description: "Wickets lost in the current innings",
icon: "Target",
id: "2", value: "5", title: "Wickets Down", description: "Wickets lost in the current innings", icon: Heart,
},
{
id: "3",
value: "42",
title: "Overs Completed",
description: "Overs bowled so far in this match",
icon: "Clock",
id: "3", value: "42", title: "Overs Completed", description: "Overs bowled so far in this match", icon: Clock,
},
{
id: "4",
value: "6.8",
title: "Run Rate",
description: "Average runs per over being scored",
icon: "Zap",
id: "4", value: "6.8", title: "Run Rate", description: "Average runs per over being scored", icon: Zap,
},
]}
/>
@@ -131,13 +101,9 @@ export default function LiveScoresPage() {
description="Access comprehensive match insights, player performance breakdowns, and expert analysis for every live match. Premium features include advanced statistics, predictive analytics, and exclusive commentary."
buttons={[
{
text: "Upgrade to Premium",
href: "#",
},
text: "Upgrade to Premium", href: "#"},
{
text: "Back to Home",
href: "/",
},
text: "Back to Home", href: "/"},
]}
buttonAnimation="slide-up"
background={{ variant: "gradient-bars" }}
@@ -150,13 +116,9 @@ export default function LiveScoresPage() {
<FooterLogoReveal
logoText="CricketLive"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>

View File

@@ -11,7 +11,7 @@ import BlogCardTwo from "@/components/sections/blog/BlogCardTwo";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Zap, Activity, Calendar, TrendingUp, BarChart3, Newspaper, Star, Heart } from "lucide-react";
import { Zap, Activity, Calendar, TrendingUp, BarChart3, Newspaper, Star, Heart, Trophy, Target } from "lucide-react";
export default function HomePage() {
return (
@@ -39,9 +39,7 @@ export default function HomePage() {
{ name: "Teams", id: "teams" },
]}
button={{
text: "Watch Live",
href: "#live-scores",
}}
text: "Watch Live", href: "#live-scores"}}
/>
</div>
@@ -53,52 +51,32 @@ export default function HomePage() {
tag="Live Updates"
tagIcon={Zap}
tagAnimation="slide-up"
background={{ variant: "circleGradient" }}
background={{ variant: "glowing-orb" }}
leftCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/vibrant-cricket-stadium-during-daytime-m-1772886597456-dd789268.png",
imageAlt: "Cricket Stadium Action",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/vibrant-cricket-stadium-during-daytime-m-1772886597456-dd789268.png", imageAlt: "Cricket Stadium Action"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/professional-cricket-batsman-in-aggressi-1772886597479-78b092a6.png",
imageAlt: "Professional Batsman",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/professional-cricket-batsman-in-aggressi-1772886597479-78b092a6.png", imageAlt: "Professional Batsman"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/expert-cricket-bowler-in-mid-bowling-del-1772886596158-888cbdb0.png",
imageAlt: "Bowler in Action",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/expert-cricket-bowler-in-mid-bowling-del-1772886596158-888cbdb0.png", imageAlt: "Bowler in Action"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/wide-aerial-or-ground-level-view-of-comp-1772886597675-fccb330f.png",
imageAlt: "Cricket Field Overview",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/wide-aerial-or-ground-level-view-of-comp-1772886597675-fccb330f.png", imageAlt: "Cricket Field Overview"},
]}
rightCarouselItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-fielder-making-spectacular-catch-1772886598210-e2e86f30.png",
imageAlt: "Fielding Excellence",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-fielder-making-spectacular-catch-1772886598210-e2e86f30.png", imageAlt: "Fielding Excellence"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/critical-cricket-wicket-moment-showing-s-1772886596618-4a0c580a.png",
imageAlt: "Wicket Moment",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/critical-cricket-wicket-moment-showing-s-1772886596618-4a0c580a.png", imageAlt: "Wicket Moment"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-team-celebrating-victory-with-pl-1772886598131-e6986f5a.png",
imageAlt: "Victory Celebration",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-team-celebrating-victory-with-pl-1772886598131-e6986f5a.png", imageAlt: "Victory Celebration"},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/digital-or-traditional-cricket-scoreboar-1772886597252-0b87326f.png",
imageAlt: "Live Scoreboard",
},
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/digital-or-traditional-cricket-scoreboar-1772886597252-0b87326f.png", imageAlt: "Live Scoreboard"},
]}
buttons={[
{
text: "View Live Scores",
href: "#live-scores",
},
text: "View Live Scores", href: "#live-scores"},
{
text: "Check Schedules",
href: "#upcoming-matches",
},
text: "Check Schedules", href: "#upcoming-matches"},
]}
buttonAnimation="slide-up"
carouselPosition="right"
@@ -119,23 +97,11 @@ export default function HomePage() {
animationType="slide-up"
features={[
{
title: "Live Score Tracking",
description: "Real-time updates with every ball bowled, runs scored, and wickets fallen",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/modern-mobile-and-web-interface-showing--1772886598790-0a5851b3.png?_wi=1",
imageAlt: "Live Score Interface",
},
title: "Live Score Tracking", description: "Real-time updates with every ball bowled, runs scored, and wickets fallen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/modern-mobile-and-web-interface-showing--1772886598790-0a5851b3.png", imageAlt: "Live Score Interface"},
{
title: "Ball-by-Ball Commentary",
description: "Detailed play-by-play commentary from expert cricket analysts",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/text-based-or-audio-commentary-feed-inte-1772886598935-7ade087d.png?_wi=1",
imageAlt: "Commentary Feed",
},
title: "Ball-by-Ball Commentary", description: "Detailed play-by-play commentary from expert cricket analysts", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/text-based-or-audio-commentary-feed-inte-1772886598935-7ade087d.png", imageAlt: "Commentary Feed"},
{
title: "Live Notifications",
description: "Get instant push notifications for wickets, milestones, and match updates",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/push-notification-system-interface-showi-1772886598814-c2a33364.png?_wi=1",
imageAlt: "Notification System",
},
title: "Live Notifications", description: "Get instant push notifications for wickets, milestones, and match updates", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/push-notification-system-interface-showi-1772886598814-c2a33364.png", imageAlt: "Notification System"},
]}
/>
</div>
@@ -154,37 +120,13 @@ export default function HomePage() {
animationType="slide-up"
products={[
{
id: "india-australia",
name: "India vs Australia",
price: "ODI Series",
variant: "Test Match Mumbai",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-match-between-india-and-australi-1772886598107-81f237f8.png?_wi=1",
imageAlt: "India vs Australia Match",
},
id: "india-australia", name: "India vs Australia", price: "ODI Series", variant: "Test Match Mumbai", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-match-between-india-and-australi-1772886598107-81f237f8.png", imageAlt: "India vs Australia Match"},
{
id: "england-pakistan",
name: "England vs Pakistan",
price: "T20 Series",
variant: "T20 International London",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/t20-international-cricket-match-between--1772886597598-14ebaa09.png?_wi=1",
imageAlt: "England vs Pakistan Match",
},
id: "england-pakistan", name: "England vs Pakistan", price: "T20 Series", variant: "T20 International London", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/t20-international-cricket-match-between--1772886597598-14ebaa09.png", imageAlt: "England vs Pakistan Match"},
{
id: "nz-sa",
name: "New Zealand vs South Africa",
price: "Test Series",
variant: "Test Match Christchurch",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/test-match-cricket-between-new-zealand-a-1772886597903-778c3e93.png?_wi=1",
imageAlt: "New Zealand vs South Africa Match",
},
id: "nz-sa", name: "New Zealand vs South Africa", price: "Test Series", variant: "Test Match Christchurch", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/test-match-cricket-between-new-zealand-a-1772886597903-778c3e93.png", imageAlt: "New Zealand vs South Africa Match"},
{
id: "west-indies-afghanistan",
name: "West Indies vs Afghanistan",
price: "ODI Series",
variant: "One Day International Port of Spain",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/odi-cricket-match-between-west-indies-an-1772886598348-48e9064d.png?_wi=1",
imageAlt: "West Indies vs Afghanistan Match",
},
id: "west-indies-afghanistan", name: "West Indies vs Afghanistan", price: "ODI Series", variant: "One Day International Port of Spain", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/odi-cricket-match-between-west-indies-an-1772886598348-48e9064d.png", imageAlt: "West Indies vs Afghanistan Match"},
]}
/>
</div>
@@ -203,32 +145,16 @@ export default function HomePage() {
animationType="slide-up"
metrics={[
{
id: "1",
value: "1247",
title: "Runs",
description: "Leading Test Match scorer this year",
icon: "Trophy",
id: "1", value: "1247", title: "Runs", description: "Leading Test Match scorer this year", icon: Trophy,
},
{
id: "2",
value: "89",
title: "Wickets",
description: "Highest bowling figures in ODI format",
icon: "Target",
id: "2", value: "89", title: "Wickets", description: "Highest bowling figures in ODI format", icon: Target,
},
{
id: "3",
value: "52",
title: "Average",
description: "Batting average across all formats",
icon: "BarChart3",
id: "3", value: "52", title: "Average", description: "Batting average across all formats", icon: BarChart3,
},
{
id: "4",
value: "94",
title: "Strike Rate",
description: "Aggressive batting strike rate percentage",
icon: "Zap",
id: "4", value: "94", title: "Strike Rate", description: "Aggressive batting strike rate percentage", icon: Zap,
},
]}
/>
@@ -248,29 +174,13 @@ export default function HomePage() {
animationType="scale-rotate"
features={[
{
title: "Batting Insights",
description: "Detailed batting analysis including strike rates, boundary counts, and dot ball percentages",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/data-visualization-dashboard-showing-cri-1772886598409-80318a44.png?_wi=1",
imageAlt: "Batting Analytics",
},
title: "Batting Insights", description: "Detailed batting analysis including strike rates, boundary counts, and dot ball percentages", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/data-visualization-dashboard-showing-cri-1772886598409-80318a44.png", imageAlt: "Batting Analytics"},
{
title: "Bowling Performance",
description: "Comprehensive bowling metrics including line and length accuracy, economy rates",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/bowling-performance-analytics-dashboard--1772886598449-23fac84a.png?_wi=1",
imageAlt: "Bowling Analytics",
},
title: "Bowling Performance", description: "Comprehensive bowling metrics including line and length accuracy, economy rates", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/bowling-performance-analytics-dashboard--1772886598449-23fac84a.png", imageAlt: "Bowling Analytics"},
{
title: "Head-to-Head Stats",
description: "Historical matchups between teams and players with win-loss percentages",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/head-to-head-statistical-comparison-inte-1772886598466-9c2123b4.png?_wi=1",
imageAlt: "Head to Head Statistics",
},
title: "Head-to-Head Stats", description: "Historical matchups between teams and players with win-loss percentages", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/head-to-head-statistical-comparison-inte-1772886598466-9c2123b4.png", imageAlt: "Head to Head Statistics"},
{
title: "Venue Performance",
description: "Analyze cricket ground statistics and how teams perform at different venues",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-ground-venue-performance-analyti-1772886598378-bdf3f2fb.png?_wi=1",
imageAlt: "Venue Performance Data",
},
title: "Venue Performance", description: "Analyze cricket ground statistics and how teams perform at different venues", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-ground-venue-performance-analyti-1772886598378-bdf3f2fb.png", imageAlt: "Venue Performance Data"},
]}
/>
</div>
@@ -289,71 +199,23 @@ export default function HomePage() {
carouselMode="buttons"
blogs={[
{
id: "1",
category: ["Match Report", "Analysis"],
title: "Historic Victory: India Claims Test Series Dominance",
excerpt: "India's dominant performance secures a historic 3-0 series victory with outstanding batting and bowling displays across all matches.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/news-article-header-image-showing-india--1772886598168-a47bfed9.png?_wi=1",
imageAlt: "India Victory Celebration",
authorName: "Cricket Analyst",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/professional-headshot-of-cricket-analyst-1772886595872-3b77a4bc.png",
date: "15 Jan 2025",
},
id: "1", category: ["Match Report", "Analysis"],
title: "Historic Victory: India Claims Test Series Dominance", excerpt: "India's dominant performance secures a historic 3-0 series victory with outstanding batting and bowling displays across all matches.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/news-article-header-image-showing-india--1772886598168-a47bfed9.png", imageAlt: "India Victory Celebration", authorName: "Cricket Analyst", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/professional-headshot-of-cricket-analyst-1772886595872-3b77a4bc.png", date: "15 Jan 2025"},
{
id: "2",
category: ["Player Profile", "Career"],
title: "Rising Star: Young Batsman Sets New Records",
excerpt: "A promising young talent breaks multiple records with consistent performances, positioning himself as the future of cricket.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/young-cricket-player-profile-image-showi-1772886596272-4ca3c429.png?_wi=1",
imageAlt: "Rising Cricket Star",
authorName: "Sports Reporter",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/sports-reporter-or-journalist-profile-he-1772886595946-b0522973.png",
date: "14 Jan 2025",
},
id: "2", category: ["Player Profile", "Career"],
title: "Rising Star: Young Batsman Sets New Records", excerpt: "A promising young talent breaks multiple records with consistent performances, positioning himself as the future of cricket.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/young-cricket-player-profile-image-showi-1772886596272-4ca3c429.png", imageAlt: "Rising Cricket Star", authorName: "Sports Reporter", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/sports-reporter-or-journalist-profile-he-1772886595946-b0522973.png", date: "14 Jan 2025"},
{
id: "3",
category: ["Tournament", "Update"],
title: "IPL 2025: Teams Announce Squad Changes",
excerpt: "Major franchise releases and retentions announced for the upcoming IPL season with several high-profile movements.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/ipl-cricket-squad-announcement-image-sho-1772886597768-b956f61d.png?_wi=1",
imageAlt: "IPL Squad Announcement",
authorName: "League Correspondent",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-league-correspondent-professiona-1772886596031-ec0745cd.png",
date: "13 Jan 2025",
},
id: "3", category: ["Tournament", "Update"],
title: "IPL 2025: Teams Announce Squad Changes", excerpt: "Major franchise releases and retentions announced for the upcoming IPL season with several high-profile movements.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/ipl-cricket-squad-announcement-image-sho-1772886597768-b956f61d.png", imageAlt: "IPL Squad Announcement", authorName: "League Correspondent", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-league-correspondent-professiona-1772886596031-ec0745cd.png", date: "13 Jan 2025"},
{
id: "4",
category: ["Injury Update", "Recovery"],
title: "Star Player Returns: Recovery From Long Injury",
excerpt: "A key international player makes a triumphant return after recovering from a lengthy injury, ready for upcoming tournaments.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-player-returning-to-play-after-i-1772886597289-f816d25c.png?_wi=1",
imageAlt: "Player Recovery News",
authorName: "Health & Cricket",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/sports-health-and-fitness-professional-h-1772886596231-3109e43c.png",
date: "12 Jan 2025",
},
id: "4", category: ["Injury Update", "Recovery"],
title: "Star Player Returns: Recovery From Long Injury", excerpt: "A key international player makes a triumphant return after recovering from a lengthy injury, ready for upcoming tournaments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-player-returning-to-play-after-i-1772886597289-f816d25c.png", imageAlt: "Player Recovery News", authorName: "Health & Cricket", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/sports-health-and-fitness-professional-h-1772886596231-3109e43c.png", date: "12 Jan 2025"},
{
id: "5",
category: ["Technology", "Innovation"],
title: "AI-Powered Predictive Analytics in Cricket",
excerpt: "New technology uses artificial intelligence to predict match outcomes and player performance with remarkable accuracy.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/technology-and-artificial-intelligence-a-1772886598499-dc391ab2.png?_wi=1",
imageAlt: "AI Cricket Technology",
authorName: "Tech Correspondent",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/technology-correspondent-professional-po-1772886597213-f7cd49db.png",
date: "11 Jan 2025",
},
id: "5", category: ["Technology", "Innovation"],
title: "AI-Powered Predictive Analytics in Cricket", excerpt: "New technology uses artificial intelligence to predict match outcomes and player performance with remarkable accuracy.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/technology-and-artificial-intelligence-a-1772886598499-dc391ab2.png", imageAlt: "AI Cricket Technology", authorName: "Tech Correspondent", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/technology-correspondent-professional-po-1772886597213-f7cd49db.png", date: "11 Jan 2025"},
{
id: "6",
category: ["International", "Schedule"],
title: "World Cup 2026: Qualifiers Schedule Released",
excerpt: "Official announcement of the Cricket World Cup 2026 qualifier matches with dates and venues confirmed for all regions.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-world-cup-schedule-or-tournament-1772886598189-1a2970bd.png?_wi=1",
imageAlt: "World Cup Schedule",
authorName: "Global Cricket",
authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/international-cricket-correspondent-prof-1772886597644-6615fcb1.png",
date: "10 Jan 2025",
},
id: "6", category: ["International", "Schedule"],
title: "World Cup 2026: Qualifiers Schedule Released", excerpt: "Official announcement of the Cricket World Cup 2026 qualifier matches with dates and venues confirmed for all regions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/cricket-world-cup-schedule-or-tournament-1772886598189-1a2970bd.png", imageAlt: "World Cup Schedule", authorName: "Global Cricket", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcKZW13EMoKFVAr3MbvK124Yjm/international-cricket-correspondent-prof-1772886597644-6615fcb1.png", date: "10 Jan 2025"},
]}
/>
</div>
@@ -369,15 +231,7 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={true}
names={[
"Cricket Australia",
"BCCI Official",
"ICC World",
"Pakistan Cricket",
"West Indies Board",
"New Zealand Cricket",
"South Africa Cricket",
"England & Wales Cricket",
]}
"Cricket Australia", "BCCI Official", "ICC World", "Pakistan Cricket", "West Indies Board", "New Zealand Cricket", "South Africa Cricket", "England & Wales Cricket"]}
speed={40}
showCard={true}
/>
@@ -393,13 +247,9 @@ export default function HomePage() {
description="Subscribe to our premium notifications for instant updates on live scores, upcoming matches, player news, and exclusive cricket insights delivered right to your device."
buttons={[
{
text: "Enable Notifications",
href: "#",
},
text: "Enable Notifications", href: "#"},
{
text: "Download App",
href: "#",
},
text: "Download App", href: "#"},
]}
buttonAnimation="slide-up"
background={{ variant: "gradient-bars" }}
@@ -412,13 +262,9 @@ export default function HomePage() {
<FooterLogoReveal
logoText="CricketLive"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>