Files
2c0918d5-7fdf-4cde-ab96-a1a…/src/app/team/page.tsx
2026-03-10 14:53:05 +00:00

141 lines
4.7 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TeamCardFive from "@/components/sections/team/TeamCardFive";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Users } from "lucide-react";
const TeamPage = () => {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Team", id: "/team" },
{ name: "Matches", id: "/matches" },
{ name: "News", id: "/news" },
];
const footerColumns = [
{
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" },
],
},
];
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={navItems.map((item) => ({
name: item.name,
id: item.id,
}))}
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/man-smiling-with-ball_1187-1688.jpg?_wi=3",
imageAlt: "David Martinez - Head Coach",
},
{
id: "2",
name: "Alex Thompson",
role: "Forward",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-handsome-african-athlete-with-healthy-tanned-skin-confident-look-wearing-black-sportswear-squinting-his-eyes-while-resting-outdoors-listening-his-favourite-music-with-earphones_273609-1205.jpg?_wi=3",
imageAlt: "Alex Thompson - Forward",
},
{
id: "3",
name: "Emma Richardson",
role: "Midfielder",
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-basketball_23-2148773285.jpg?_wi=3",
imageAlt: "Emma Richardson - Midfielder",
},
{
id: "4",
name: "Carlos Santos",
role: "Defender",
imageSrc: "http://img.b2bpic.net/free-photo/male-american-football-player-uniform-field_23-2150034568.jpg?_wi=3",
imageAlt: "Carlos Santos - Defender",
},
{
id: "5",
name: "Jordan Lee",
role: "Goalkeeper",
imageSrc: "http://img.b2bpic.net/free-photo/amateur-football-concept-with-goalkeeper_23-2147833417.jpg?_wi=3",
imageAlt: "Jordan Lee - Goalkeeper",
},
{
id: "6",
name: "Sofia Hernandez",
role: "Assistant Coach",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg?_wi=3",
imageAlt: "Sofia Hernandez - Assistant Coach",
},
]}
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}
tagIcon={Users}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2025 Elite Football Club. All rights reserved."
/>
</div>
</ThemeProvider>
);
};
export default TeamPage;