Merge version_1 into main #1
@@ -1,27 +1,48 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FootballHub - Live Scores, News & Analysis",
|
||||
description: "Your ultimate football destination. Get live scores, breaking news, expert analysis, and team information for all major leagues worldwide.",
|
||||
keywords: "football news, live scores, soccer updates, match analysis, football statistics, team information",
|
||||
openGraph: {
|
||||
title: "FootballHub - Live Scores & Football News",
|
||||
description: "Real-time football scores, breaking news, expert analysis, and comprehensive match coverage for global fans.",
|
||||
siteName: "FootballHub",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "FootballHub - Live Football Scores",
|
||||
description: "Your source for real-time football scores, breaking news, and expert analysis.",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +52,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +66,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -50,7 +50,7 @@ const NewsPage = () => {
|
||||
category: "Transfer News",
|
||||
title: "Top 5 Transfer Rumours This Season",
|
||||
excerpt: "Breaking down the biggest transfer stories and player movements affecting major leagues worldwide.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg?_wi=5",
|
||||
imageAlt: "Transfer news analysis",
|
||||
authorName: "Football Correspondent",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16796.jpg",
|
||||
@@ -61,7 +61,7 @@ const NewsPage = () => {
|
||||
category: "Tactical Analysis",
|
||||
title: "Defensive Strategies in Modern Football",
|
||||
excerpt: "How elite teams are adapting their defensive tactics to counter attacking formations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg?_wi=5",
|
||||
imageAlt: "Tactical football strategy",
|
||||
authorName: "Sports Analyst",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/men-watching-television-cheering-team_329181-18368.jpg",
|
||||
@@ -72,7 +72,7 @@ const NewsPage = () => {
|
||||
category: "Player Spotlight",
|
||||
title: "Rising Stars to Watch This Season",
|
||||
excerpt: "Emerging young talents making waves in international football with exceptional performances.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg?_wi=5",
|
||||
imageAlt: "Young football player",
|
||||
authorName: "Youth Development Expert",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/football-fans-celebrating-win-their-team-tailgate-party_53876-132082.jpg",
|
||||
@@ -109,7 +109,7 @@ const NewsPage = () => {
|
||||
"Injury announcements",
|
||||
"Transfer confirmations",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-jumping-outdoors_23-2149867429.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-jumping-outdoors_23-2149867429.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "analysis",
|
||||
@@ -119,7 +119,7 @@ const NewsPage = () => {
|
||||
"Formation strategies",
|
||||
"Player performance review",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "interviews",
|
||||
@@ -129,7 +129,7 @@ const NewsPage = () => {
|
||||
"Manager perspectives",
|
||||
"Behind-the-scenes access",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-people-enjoying-game-home_23-2147745155.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-people-enjoying-game-home_23-2147745155.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "statistics",
|
||||
@@ -139,7 +139,7 @@ const NewsPage = () => {
|
||||
"Historical comparisons",
|
||||
"Data-driven analysis",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-tournament-schedule-template_23-2149642101.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-tournament-schedule-template_23-2149642101.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function HomePage() {
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
background={{ variant: "blurBottom" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/low-angle-man-jumping-outdoors_23-2149867429.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/low-angle-man-jumping-outdoors_23-2149867429.jpg?_wi=1"
|
||||
imageAlt="Live football stadium match"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -100,7 +100,7 @@ export default function HomePage() {
|
||||
"Goal alerts and notifications",
|
||||
"Instant score refreshes",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "match-analysis",
|
||||
@@ -110,7 +110,7 @@ export default function HomePage() {
|
||||
"Player performance metrics",
|
||||
"Team statistics comparison",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "news-coverage",
|
||||
@@ -120,7 +120,7 @@ export default function HomePage() {
|
||||
"Injury updates and returns",
|
||||
"Championship announcements",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "schedule-alerts",
|
||||
@@ -130,7 +130,7 @@ export default function HomePage() {
|
||||
"Customizable notifications",
|
||||
"Calendar integration",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-tournament-schedule-template_23-2149642101.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-tournament-schedule-template_23-2149642101.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
@@ -152,7 +152,7 @@ export default function HomePage() {
|
||||
description="FootballHub is your ultimate destination for football news, scores, and community engagement."
|
||||
subdescription="We provide comprehensive coverage across all major leagues and competitions worldwide, delivering real-time updates and expert analysis to fans of all levels."
|
||||
icon={Globe}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg?_wi=1"
|
||||
imageAlt="Global football community"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -196,7 +196,7 @@ export default function HomePage() {
|
||||
role: "Casual Fan",
|
||||
company: "Premier League Enthusiast",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16796.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -204,7 +204,7 @@ export default function HomePage() {
|
||||
role: "Diehard Supporter",
|
||||
company: "La Liga Devotee",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/men-watching-television-cheering-team_329181-18368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/men-watching-television-cheering-team_329181-18368.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -212,7 +212,7 @@ export default function HomePage() {
|
||||
role: "Youth Coach",
|
||||
company: "Football Academy",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-fans-celebrating-win-their-team-tailgate-party_53876-132082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-fans-celebrating-win-their-team-tailgate-party_53876-132082.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -220,7 +220,7 @@ export default function HomePage() {
|
||||
role: "Sports Journalist",
|
||||
company: "Sports Daily",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-people-enjoying-game-home_23-2147745155.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-people-enjoying-game-home_23-2147745155.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -228,7 +228,7 @@ export default function HomePage() {
|
||||
role: "Lifelong Fan",
|
||||
company: "Bundesliga Fan",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-with-closed-eyes-young-handsome-guy-wearing-red-shirt-glasses-showing-yes-gesture-isolated-green-wall_141793-86953.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-with-closed-eyes-young-handsome-guy-wearing-red-shirt-glasses-showing-yes-gesture-isolated-green-wall_141793-86953.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -236,7 +236,7 @@ export default function HomePage() {
|
||||
role: "Global Supporter",
|
||||
company: "African Football Alliance",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-sportsman-holding-football-head-against-metal-structure_23-2148203721.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-sportsman-holding-football-head-against-metal-structure_23-2148203721.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -262,7 +262,7 @@ export default function HomePage() {
|
||||
category: "Transfer News",
|
||||
title: "Top 5 Transfer Rumours This Season",
|
||||
excerpt: "Breaking down the biggest transfer stories and player movements affecting major leagues worldwide.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg?_wi=2",
|
||||
imageAlt: "Transfer news analysis",
|
||||
authorName: "Football Correspondent",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16796.jpg",
|
||||
@@ -273,7 +273,7 @@ export default function HomePage() {
|
||||
category: "Tactical Analysis",
|
||||
title: "Defensive Strategies in Modern Football",
|
||||
excerpt: "How elite teams are adapting their defensive tactics to counter attacking formations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg?_wi=2",
|
||||
imageAlt: "Tactical football strategy",
|
||||
authorName: "Sports Analyst",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/men-watching-television-cheering-team_329181-18368.jpg",
|
||||
@@ -284,7 +284,7 @@ export default function HomePage() {
|
||||
category: "Player Spotlight",
|
||||
title: "Rising Stars to Watch This Season",
|
||||
excerpt: "Emerging young talents making waves in international football with exceptional performances.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg?_wi=2",
|
||||
imageAlt: "Young football player",
|
||||
authorName: "Youth Development Expert",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/football-fans-celebrating-win-their-team-tailgate-party_53876-132082.jpg",
|
||||
|
||||
@@ -53,7 +53,7 @@ const SchedulePage = () => {
|
||||
"Venue and kick-off times",
|
||||
"Team lineup confirmations",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-jumping-outdoors_23-2149867429.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-jumping-outdoors_23-2149867429.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "schedule-la-liga",
|
||||
@@ -63,7 +63,7 @@ const SchedulePage = () => {
|
||||
"Match day information",
|
||||
"Real-time status updates",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "schedule-champions",
|
||||
@@ -73,7 +73,7 @@ const SchedulePage = () => {
|
||||
"Group stage matches",
|
||||
"Knockout round fixtures",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "schedule-alerts",
|
||||
@@ -83,7 +83,7 @@ const SchedulePage = () => {
|
||||
"Team-specific alerts",
|
||||
"Fantasy football updates",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg?_wi=4",
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
|
||||
@@ -120,7 +120,7 @@ export default function StatsPage() {
|
||||
"Player performance tracking",
|
||||
"Live event monitoring",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg?_wi=6",
|
||||
},
|
||||
{
|
||||
id: "historical-data",
|
||||
@@ -130,7 +130,7 @@ export default function StatsPage() {
|
||||
"Career performance data",
|
||||
"Historical achievements",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg?_wi=6",
|
||||
},
|
||||
{
|
||||
id: "predictive-analytics",
|
||||
@@ -140,7 +140,7 @@ export default function StatsPage() {
|
||||
"Player form analysis",
|
||||
"Trend forecasting",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg?_wi=6",
|
||||
},
|
||||
{
|
||||
id: "comparative-analysis",
|
||||
@@ -150,7 +150,7 @@ export default function StatsPage() {
|
||||
"Player benchmarking",
|
||||
"League-wide statistics",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-tournament-schedule-template_23-2149642101.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-tournament-schedule-template_23-2149642101.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
@@ -181,7 +181,7 @@ export default function StatsPage() {
|
||||
role: "Stats Analyst",
|
||||
company: "Premier League Enthusiast",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16796.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-watching-match-waiting-goal_329181-16796.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -189,7 +189,7 @@ export default function StatsPage() {
|
||||
role: "Data Scientist",
|
||||
company: "Football Analytics",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/men-watching-television-cheering-team_329181-18368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/men-watching-television-cheering-team_329181-18368.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -197,7 +197,7 @@ export default function StatsPage() {
|
||||
role: "Coach",
|
||||
company: "Football Academy",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-fans-celebrating-win-their-team-tailgate-party_53876-132082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-fans-celebrating-win-their-team-tailgate-party_53876-132082.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -205,7 +205,7 @@ export default function StatsPage() {
|
||||
role: "Sports Journalist",
|
||||
company: "Sports Daily",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-people-enjoying-game-home_23-2147745155.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-people-enjoying-game-home_23-2147745155.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -213,7 +213,7 @@ export default function StatsPage() {
|
||||
role: "Fantasy Player",
|
||||
company: "Football Fantasy",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-with-closed-eyes-young-handsome-guy-wearing-red-shirt-glasses-showing-yes-gesture-isolated-green-wall_141793-86953.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-with-closed-eyes-young-handsome-guy-wearing-red-shirt-glasses-showing-yes-gesture-isolated-green-wall_141793-86953.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -221,7 +221,7 @@ export default function StatsPage() {
|
||||
role: "Statistician",
|
||||
company: "Global Stats",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-sportsman-holding-football-head-against-metal-structure_23-2148203721.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-sportsman-holding-football-head-against-metal-structure_23-2148203721.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function TeamsPage() {
|
||||
description="Discover detailed profiles and statistics for the world's top football teams across all major leagues."
|
||||
subdescription="From Premier League champions to international squad leaders, access comprehensive team rosters, performance metrics, and seasonal achievements with real-time updates."
|
||||
icon={Globe}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg?_wi=2"
|
||||
imageAlt="Football team coordination"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -83,7 +83,7 @@ export default function TeamsPage() {
|
||||
"Championship contenders",
|
||||
"Rising talent centers",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-successful-business-team-workplace_23-2147923435.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "team-la-liga",
|
||||
@@ -93,7 +93,7 @@ export default function TeamsPage() {
|
||||
"European competition regulars",
|
||||
"Youth academy excellence",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/field-hockey-players-tournament-game_23-2149668612.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "team-bundesliga",
|
||||
@@ -103,7 +103,7 @@ export default function TeamsPage() {
|
||||
"Consistent European participants",
|
||||
"Development pipeline leaders",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-soccer-field-soccer-training-active-lifestyle-football-concept_169016-68502.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "team-serie-a",
|
||||
@@ -113,7 +113,7 @@ export default function TeamsPage() {
|
||||
"Defensive specialists",
|
||||
"Historical champions",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/football-trainer-teaching-his-pupils_23-2149707976.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
|
||||
Reference in New Issue
Block a user