12 Commits

Author SHA1 Message Date
a7ef0bdf7d Update src/app/page.tsx 2026-03-02 00:03:48 +00:00
795bb3ee4b Update src/app/layout.tsx 2026-03-02 00:03:46 +00:00
84f619d1a4 Merge version_8 into main
Merge version_8 into main
2026-03-01 23:58:38 +00:00
8663fbbf94 Update src/app/page.tsx 2026-03-01 23:58:34 +00:00
63f38ec246 Merge version_7 into main
Merge version_7 into main
2026-03-01 23:54:56 +00:00
ebe7e8abc2 Update src/app/page.tsx 2026-03-01 23:54:52 +00:00
7ceddc4c29 Merge version_6 into main
Merge version_6 into main
2026-03-01 23:51:29 +00:00
62e5ce1c32 Update src/app/page.tsx 2026-03-01 23:51:25 +00:00
67e6ab6fc2 Merge version_5 into main
Merge version_5 into main
2026-03-01 23:42:18 +00:00
b8fd8e29d3 Update src/app/page.tsx 2026-03-01 23:42:14 +00:00
4c60e1c43e Merge version_4 into main
Merge version_4 into main
2026-03-01 23:39:59 +00:00
5aa9985fe7 Merge version_4 into main
Merge version_4 into main
2026-03-01 23:38:01 +00:00
2 changed files with 54 additions and 35 deletions

View File

@@ -1407,4 +1407,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
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, Hexagon, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } 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,47 +45,64 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardDashboard
<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="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" }
]}
buttonAnimation="slide-up"
dashboard={{
title: "Coaching Performance Hub", logoIcon: Hexagon,
imageSrc: "http://img.b2bpic.net/free-photo/woman-gym-with-coach_1303-5545.jpg", buttons: [
{ text: "View Dashboard", href: "#" },
{ text: "Export Progress", href: "#" }
],
sidebarItems: [
{ icon: House, active: true },
{ icon: MessageSquareText },
{ icon: Settings }
],
stats: [
{ title: "Clients Trained", values: [150, 280, 450], description: "Active coaching clients." },
{ title: "Sessions Completed", values: [1240, 1850, 2340], description: "Total training sessions." },
{ title: "Goals Achieved", values: [92, 145, 198], description: "Client success rate." }
],
chartTitle: "Monthly Training Activity", chartData: [
{ value: 65 },
{ value: 45 },
{ value: 78 },
{ value: 55 },
{ value: 88 }
],
listTitle: "Recent Client Achievements", listItems: [
{ icon: CircleDollarSign, title: "Weight Loss Goal Met", status: "Completed" },
{ icon: ArrowLeftRight, title: "Strength Milestone", status: "In Progress" },
{ icon: Send, title: "Endurance Record", status: "Completed" }
]
}}
/>
</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>
@@ -278,4 +297,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}