Files
2c0918d5-7fdf-4cde-ab96-a1a…/src/app/join/page.tsx
2026-03-10 15:57:16 +00:00

224 lines
8.4 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
import TeamCardFive from "@/components/sections/team/TeamCardFive";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Phone, Users } from "lucide-react";
export default function JoinPage() {
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
navItems={navItems}
brandName="Elite Football Club"
button={{ text: "Join Us", href: "/join" }}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyFour
features={[
{
id: "1",
title: "Professional Coaching",
author: "Training Excellence",
description:
"Our coaches are certified professionals with international experience, dedicated to developing each player's potential.",
tags: ["Coaching", "Development"],
imageSrc:
"http://img.b2bpic.net/free-photo/handsome-man-training-summer-park_1157-26931.jpg?_wi=2",
imageAlt: "Professional football coach training players",
},
{
id: "2",
title: "State-of-the-Art Facilities",
author: "World-Class Infrastructure",
description:
"Train on premium fields with modern equipment designed to enhance performance and ensure player safety.",
tags: ["Facilities", "Safety"],
imageSrc:
"http://img.b2bpic.net/free-photo/african-american-male-athlete-sportswear-doing-stretching-exercise-stadium_627829-2168.jpg?_wi=2",
imageAlt: "Elite training facility with professional equipment",
},
{
id: "3",
title: "Community & Events",
author: "Strong Fellowship",
description:
"Join a vibrant community of passionate football enthusiasts through tournaments, socials, and team-building events.",
tags: ["Community", "Events"],
imageSrc:
"http://img.b2bpic.net/free-photo/men-playing-rugby-field_23-2150062005.jpg?_wi=2",
imageAlt: "Community football event with players and supporters",
},
]}
title="Why Choose Elite Football Club"
description="Discover what sets us apart and why thousands of families trust us with their football journey."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
</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?_wi=4",
imageAlt: "David Martinez, Head Coach",
},
{
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?_wi=4",
imageAlt: "Alex Thompson, Forward",
},
{
id: "3",
name: "Emma Richardson",
role: "Midfielder",
imageSrc:
"http://img.b2bpic.net/free-photo/full-shot-adult-woman-sportswear_23-2148298968.jpg?_wi=4",
imageAlt: "Emma Richardson, Midfielder",
},
{
id: "4",
name: "Carlos Santos",
role: "Defender",
imageSrc:
"http://img.b2bpic.net/free-photo/girls-volleyball-field_23-2149450959.jpg?_wi=4",
imageAlt: "Carlos Santos, Defender",
},
{
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?_wi=4",
imageAlt: "Jordan Lee, Goalkeeper",
},
{
id: "6",
name: "Sofia Hernandez",
role: "Assistant Coach",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-businesswoman-looking-through-window_1262-1977.jpg?_wi=4",
imageAlt: "Sofia Hernandez, Assistant Coach",
},
]}
title="Meet Our Squad"
description="Get to know the talented players and dedicated coaching staff who make Elite Football Club great."
tag="Team"
tagIcon={Users}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
faqs={[
{
id: "1",
title: "What are the age requirements to join?",
content:
"We welcome players from age 5 to senior levels. Different programs are tailored to each age group with age-appropriate training and competition levels.",
},
{
id: "2",
title: "How do I register for training?",
content:
"Visit our Join page to fill out the registration form. Our staff will contact you within 24 hours with available training times and pricing information.",
},
{
id: "3",
title: "What is the cost of membership?",
content:
"Membership fees vary depending on age group and program level. Youth programs start at $50/month while senior competitive teams range from $100-200/month.",
},
{
id: "4",
title: "Do you offer scholarships?",
content:
"Yes, we offer merit-based scholarships for talented players. Contact our coaching staff to discuss scholarship opportunities.",
},
]}
ctaTitle="Get in Touch"
ctaDescription="Have questions about joining or want to know more? Contact us today and let's talk football!"
ctaButton={{ text: "Contact Us", href: "/contact" }}
ctaIcon={Phone}
useInvertedBackground={true}
animationType="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2025 Elite Football Club. All rights reserved."
/>
</div>
</ThemeProvider>
);
}