From f808026c6dbb60831873da870fc1376265bbccdc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:55:30 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 246 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 176 insertions(+), 70 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a1821a7..23c7f32 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,5 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; @@ -9,143 +8,238 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import Link from 'next/link'; -import { Zap, Package, Trophy, Users } from 'lucide-react'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Award, Camera, DollarSign, Flame, Quote, Target, Trophy, TrendingUp, Users, Zap } from 'lucide-react'; -export default function Home() { +export default function LandingPage() { return (
@@ -154,28 +248,40 @@ export default function Home() { logoText="Iron Pulse" columns={[ { - title: "Platform", items: [ - { label: "Classes", href: "wod" }, - { label: "Pricing", href: "pricing" }, - { label: "3D Tour", href: "/gym-3d" } + title: "Quick Links", items: [ + { label: "Home", href: "/" }, + { label: "Today's WOD", href: "#wod" }, + { label: "Pricing", href: "#pricing" }, + { label: "Gallery", href: "#gallery" } ] }, { title: "Community", items: [ - { label: "Members", href: "testimonials" }, - { label: "Events", href: "testimonials" }, - { label: "Blog", href: "testimonials" } + { label: "Testimonials", href: "#testimonials" }, + { label: "Athletes", href: "#gallery" }, + { label: "Events", href: "#" }, + { label: "Leaderboards", href: "#" } + ] + }, + { + title: "Training", items: [ + { label: "Programming", href: "#wod" }, + { label: "Coaching", href: "#pricing" }, + { label: "Class Schedule", href: "#" }, + { label: "Facility Tour", href: "#" } ] }, { title: "Company", items: [ - { label: "About", href: "/" }, - { label: "Contact", href: "testimonials" }, - { label: "Careers", href: "/" } + { label: "About Us", href: "#" }, + { label: "Contact", href: "#contact" }, + { label: "Join Team", href: "#" }, + { label: "Gym 3D", href: "/gym-3d" } ] } ]} - copyrightText="© 2025 Iron Pulse. All rights reserved." + copyrightText="© 2025 Iron Pulse CrossFit. All rights reserved. Forged in intensity. Built by community." + ariaLabel="Site Footer" />