diff --git a/src/app/page.tsx b/src/app/page.tsx index 4da95cb..793ae3c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,8 +33,7 @@ export default function LandingPage() { { name: "Pricing", id: "pricing" }, { name: "Gallery", id: "gallery" }, { name: "Testimonials", id: "testimonials" }, - { name: "3D Gym", id: "gym-3d" }, - { name: "Contact", id: "contact" } + { name: "3D Gym", id: "/gym-3d" } ]} button={{ text: "Start Your Trial", href: "contact" }} /> @@ -71,6 +70,9 @@ export default function LandingPage() { } ]} ariaLabel="Iron Pulse CrossFit Hero Section" + containerClassName="w-full" + titleClassName="text-5xl md:text-7xl font-bold tracking-tight" + descriptionClassName="text-lg md:text-xl text-foreground/90" /> @@ -125,16 +127,20 @@ export default function LandingPage() { tagAnimation="slide-up" plans={[ { - id: "drop-in", badge: "Pay As You Go", price: "$25", subtitle: "Single class access", features: ["1 drop-in class", "Full facility access", "No commitment", "Valid for 30 days"] + id: "drop-in", badge: "Pay As You Go", price: "$25", subtitle: "Single class access", features: ["1 drop-in class", "Full facility access", "No commitment", "Valid for 30 days"], + badgeIcon: Zap }, { - id: "unlimited-monthly", badge: "Most Popular", price: "$149", subtitle: "Unlimited monthly membership", features: ["Unlimited classes", "Daily WOD access", "Community leaderboards", "Coaching support", "Progress tracking"] + id: "unlimited-monthly", badge: "Most Popular", price: "$149", subtitle: "Unlimited monthly membership", features: ["Unlimited classes", "Daily WOD access", "Community leaderboards", "Coaching support", "Progress tracking"], + badgeIcon: Award }, { - id: "elite-coaching", badge: "Elite Athletes", price: "$249", subtitle: "1-on-1 coaching program", features: ["Unlimited classes", "1-on-1 coaching sessions", "Custom programming", "Monthly performance review", "Priority support", "Comp prep optional"] + id: "elite-coaching", badge: "Elite Athletes", price: "$249", subtitle: "1-on-1 coaching program", features: ["Unlimited classes", "1-on-1 coaching sessions", "Custom programming", "Monthly performance review", "Priority support", "Comp prep optional"], + badgeIcon: Trophy }, { - id: "team-package", badge: "Teams", price: "$999", subtitle: "5-person team membership", features: ["5 unlimited memberships", "Team leaderboards", "Group coaching sessions", "Team challenge events", "Dedicated account manager"] + id: "team-package", badge: "Teams", price: "$999", subtitle: "5-person team membership", features: ["5 unlimited memberships", "Team leaderboards", "Group coaching sessions", "Team challenge events", "Dedicated account manager"], + badgeIcon: Users } ]} animationType="slide-up"