129 lines
4.7 KiB
TypeScript
129 lines
4.7 KiB
TypeScript
"use client";
|
|
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import { Users } from "lucide-react";
|
|
|
|
export default function TeamPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="icon-arrow"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="large"
|
|
background="none"
|
|
cardStyle="glass-depth"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Elite Football Club"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Team", id: "/team" },
|
|
{ name: "Matches", id: "/matches" },
|
|
{ name: "News", id: "/news" },
|
|
]}
|
|
button={{ text: "Join Us", href: "/join" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardFive
|
|
team={[
|
|
{
|
|
id: "1",
|
|
name: "David Martinez",
|
|
role: "Head Coach",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-sitting-desk_23-2149927603.jpg",
|
|
imageAlt: "professional football coach portrait confident",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Alex Thompson",
|
|
role: "Forward",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/male-athlete-standing-with-basketball-plastic-bottle-soft-blue-background_23-2148203716.jpg",
|
|
imageAlt: "young male soccer player portrait jersey",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "Emma Richardson",
|
|
role: "Midfielder",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-adult-woman-sportswear_23-2148298968.jpg",
|
|
imageAlt: "female soccer player portrait confident",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "Carlos Santos",
|
|
role: "Defender",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/girls-volleyball-field_23-2149450959.jpg",
|
|
imageAlt: "male defender soccer player portrait",
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "Jordan Lee",
|
|
role: "Goalkeeper",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-sportsman-holds-hand-chin-dark-background_613910-5321.jpg",
|
|
imageAlt: "goalkeeper football player portrait hands",
|
|
},
|
|
{
|
|
id: "6",
|
|
name: "Sofia Hernandez",
|
|
role: "Assistant Coach",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-looking-through-window_1262-1977.jpg",
|
|
imageAlt: "female sports coach portrait confident",
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
title="Meet Our Squad"
|
|
description="Get to know the talented players and dedicated coaching staff who make Elite Football Club great."
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
tag="Team"
|
|
tagIcon={Users}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
columns={[
|
|
{
|
|
title: "Club",
|
|
items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Team", href: "/team" },
|
|
{ label: "Facilities", href: "/about" },
|
|
{ label: "Sponsors", href: "/#sponsors" },
|
|
],
|
|
},
|
|
{
|
|
title: "Activities",
|
|
items: [
|
|
{ label: "Matches & Results", href: "/matches" },
|
|
{ label: "News", href: "/news" },
|
|
{ label: "Gallery", href: "/gallery" },
|
|
{ label: "Events", href: "/#events" },
|
|
],
|
|
},
|
|
{
|
|
title: "Get Involved",
|
|
items: [
|
|
{ label: "Join the Club", href: "/join" },
|
|
{ label: "Contact Us", href: "/contact" },
|
|
{ label: "Become a Sponsor", href: "/contact" },
|
|
{ label: "Volunteer", href: "/contact" },
|
|
],
|
|
},
|
|
]}
|
|
copyrightText="© 2025 Elite Football Club. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |