2 Commits

Author SHA1 Message Date
be38d99165 Update src/app/page.tsx 2026-05-04 16:52:37 +00:00
8cd32b1ba5 Merge version_1 into main
Merge version_1 into main
2026-05-04 16:50:11 +00:00

View File

@@ -9,7 +9,7 @@ import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
export default function LandingPage() {
@@ -69,20 +69,26 @@ export default function LandingPage() {
</div>
<div id="squad" data-section="squad">
<TeamCardFive
animationType="blur-reveal"
<TeamCardSix
animationType="depth-3d"
gridVariant="full-width-top-items-bottom-row"
textboxLayout="default"
useInvertedBackground={false}
team={[
{ id: "1", name: "Donnarumma", role: "GK", imageSrc: "http://img.b2bpic.net/free-photo/view-male-soccer-player-ready-match_23-2150887388.jpg" },
{ id: "2", name: "Hakimi", role: "RB", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-sportsman-holds-hand-chin-dark-background_613910-19218.jpg" },
{ id: "3", name: "Marquinhos", role: "CB", imageSrc: "http://img.b2bpic.net/free-photo/young-person-playing-soccer_1048-17586.jpg" },
{ id: "4", name: "W. Pacho", role: "CB", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-boy-playing-soccer_23-2150898615.jpg" },
{ id: "5", name: "N. Mendes", role: "LB", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-football-soccer-player-with-glowing-lights_23-2151152943.jpg" },
{ id: "6", name: "J. Neves", role: "CDM", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-model-with-perfect-tanned-body-female-posing-studio-near-gray-wall_158538-3532.jpg" }
title="Interactive 3D Stadium Lineup"
description="Navigate through our 4-3-3 tactical formation. Click on any player for detailed stats and biography in our immersive PlayStation-style dashboard."
members={[
{ id: "1", name: "Donnarumma", role: "GK" },
{ id: "2", name: "Hakimi", role: "RB" },
{ id: "3", name: "Marquinhos", role: "CB" },
{ id: "4", name: "W. Pacho", role: "CB" },
{ id: "5", name: "N. Mendes", role: "LB" },
{ id: "6", name: "J. Neves", role: "CDM" },
{ id: "7", name: "Vitinha", role: "CM" },
{ id: "8", name: "Zaire-Emery", role: "CM" },
{ id: "9", name: "Dembele", role: "RW" },
{ id: "10", name: "Barcola", role: "LW" },
{ id: "11", name: "Asensio", role: "ST" }
]}
title="The Potential XI Starting Lineup"
description="Meet the core players selected for the 24/25 campaign, chosen for their tactical intelligence and physical dominance."
/>
</div>
@@ -172,4 +178,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}