|
|
|
|
@@ -1,8 +1,8 @@
|
|
|
|
|
"use client"
|
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
|
|
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
|
|
|
|
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
|
|
|
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
|
|
|
|
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
|
|
|
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
|
|
|
|
@@ -10,7 +10,9 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
|
|
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
|
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
|
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
|
|
|
import { Zap, Target, DollarSign, Users, Star, Mail } from 'lucide-react';
|
|
|
|
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
|
|
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
|
|
|
import { Zap, Target, DollarSign, Users, Star, Mail, TrendingUp } from 'lucide-react';
|
|
|
|
|
|
|
|
|
|
export default function LandingPage() {
|
|
|
|
|
return (
|
|
|
|
|
@@ -43,15 +45,17 @@ export default function LandingPage() {
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="hero" data-section="hero">
|
|
|
|
|
<HeroBillboardScroll
|
|
|
|
|
<HeroOverlay
|
|
|
|
|
title="Transform Your Body, Elevate Your Life"
|
|
|
|
|
description="Expert personal coaching designed to help you achieve your fitness goals. Whether you're starting your journey or reaching peak performance, our certified coaches are here to guide every step."
|
|
|
|
|
tag="Professional Sports Coaching"
|
|
|
|
|
tagIcon={Zap}
|
|
|
|
|
tagAnimation="slide-up"
|
|
|
|
|
background={{ variant: "canvas-reveal" }}
|
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/woman-gym-with-coach_1303-5545.jpg"
|
|
|
|
|
imageAlt="Professional athlete training with a coach"
|
|
|
|
|
imageAlt="Elite coaching professional trainer helping client"
|
|
|
|
|
textPosition="bottom-left"
|
|
|
|
|
showBlur={true}
|
|
|
|
|
showDimOverlay={false}
|
|
|
|
|
buttons={[
|
|
|
|
|
{ text: "Book Your First Session", href: "#contact" },
|
|
|
|
|
{ text: "View Services", href: "#services" }
|
|
|
|
|
@@ -60,6 +64,48 @@ export default function LandingPage() {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="wow" data-section="wow">
|
|
|
|
|
<MetricCardSeven
|
|
|
|
|
title="Experience the Transformation Magic"
|
|
|
|
|
description="Witness the incredible power of elite coaching as we transform bodies and minds. Join thousands of satisfied clients who've achieved remarkable results."
|
|
|
|
|
tag="WOW Factor"
|
|
|
|
|
tagIcon={TrendingUp}
|
|
|
|
|
tagAnimation="slide-up"
|
|
|
|
|
metrics={[
|
|
|
|
|
{
|
|
|
|
|
id: "1", value: "300%", title: "Faster Results", items: ["Proven training methods", "Measurable progress", "Accelerated gains"]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "2", value: "100%", title: "Success Rate", items: ["Personalized programs", "Expert guidance", "Results guaranteed"]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "3", value: "∞", title: "Unlimited Potential", items: ["No limits to growth", "Continuous improvement", "Your best self"]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "4", value: "15+", title: "Years of Excellence", items: ["Expert coaching methods", "Proven track record", "Industry leaders"]
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="logos" data-section="logos">
|
|
|
|
|
<SocialProofOne
|
|
|
|
|
title="Trusted by Industry Leaders"
|
|
|
|
|
description="Join thousands of people who've transformed with Elite Coaching"
|
|
|
|
|
tag="Our Clients"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
names={[
|
|
|
|
|
"Fitness First", "Gold's Gym", "CrossFit Box", "Wellness Hub", "Athletic Club", "Performance Center"
|
|
|
|
|
]}
|
|
|
|
|
speed={40}
|
|
|
|
|
showCard={true}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="about" data-section="about">
|
|
|
|
|
<TextSplitAbout
|
|
|
|
|
title="About Elite Coaching"
|
|
|
|
|
@@ -251,4 +297,4 @@ export default function LandingPage() {
|
|
|
|
|
</div>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|