Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ebe7e8abc2 | |||
| 7ceddc4c29 | |||
| 62e5ce1c32 | |||
| 67e6ab6fc2 | |||
| b8fd8e29d3 | |||
| 4c60e1c43e | |||
| 1833e30578 | |||
| 5aa9985fe7 | |||
| b2f3d250d2 | |||
| e30ac6e4ae | |||
| 33d8ae10ce | |||
| e588caa560 | |||
| 9baad5fb3f | |||
| 0ea659b1c2 |
@@ -1407,4 +1407,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
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 TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||||
@@ -10,6 +10,7 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
|||||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import { Zap, Target, DollarSign, Users, Star, Mail } from 'lucide-react';
|
import { Zap, Target, DollarSign, Users, Star, Mail } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -43,15 +44,17 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardScroll
|
<HeroOverlay
|
||||||
title="Transform Your Body, Elevate Your Life"
|
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."
|
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"
|
tag="Professional Sports Coaching"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "canvas-reveal" }}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-gym-with-coach_1303-5545.jpg"
|
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={[
|
buttons={[
|
||||||
{ text: "Book Your First Session", href: "#contact" },
|
{ text: "Book Your First Session", href: "#contact" },
|
||||||
{ text: "View Services", href: "#services" }
|
{ text: "View Services", href: "#services" }
|
||||||
@@ -60,6 +63,21 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="wow" data-section="wow">
|
||||||
|
<SocialProofOne
|
||||||
|
title="Experience the Transformation Magic"
|
||||||
|
description="Witness the incredible power of elite coaching as we transform bodies and minds. Our proven methods create stunning results that leave a lasting impression."
|
||||||
|
tag="WOW Factor"
|
||||||
|
names={[
|
||||||
|
"300% Faster Results", "100% Guaranteed Success", "∞ Unlimited Potential", "Expert Coaching Methods"
|
||||||
|
]}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
showCard={false}
|
||||||
|
speed={40}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TextSplitAbout
|
<TextSplitAbout
|
||||||
title="About Elite Coaching"
|
title="About Elite Coaching"
|
||||||
@@ -251,4 +269,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #f6f0e9;;
|
||||||
--card: #ffffff;;
|
--card: #efe7dd;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #2b180a;;
|
||||||
--primary-cta: #1f3251;;
|
--primary-cta: #2b180a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #efe7dd;;
|
||||||
--accent: #15479c;;
|
--accent: #94877c;;
|
||||||
--background-accent: #a8cce8;; */
|
--background-accent: #afa094;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #f6f0e9;;
|
||||||
--card: #ffffff;;
|
--card: #efe7dd;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #2b180a;;
|
||||||
--primary-cta: #1f3251;;
|
--primary-cta: #2b180a;;
|
||||||
--primary-cta-text: #f5f5f5;;
|
--primary-cta-text: #f5f5f5;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #efe7dd;;
|
||||||
--secondary-cta-text: #1c1c1c;;
|
--secondary-cta-text: #1c1c1c;;
|
||||||
--accent: #15479c;;
|
--accent: #94877c;;
|
||||||
--background-accent: #a8cce8;;
|
--background-accent: #afa094;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user