"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; import BlogCardThree from "@/components/sections/blog/BlogCardThree"; import TeamCardFive from "@/components/sections/team/TeamCardFive"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Trophy, Users, Handshake, Phone } from "lucide-react"; export default function HomePage() { 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 (
); }