Compare commits
29 Commits
version_2
...
version_15
| Author | SHA1 | Date | |
|---|---|---|---|
| eb4bd8cd96 | |||
| bc83a41cf7 | |||
| ce38d4c5fd | |||
| 3a4b65761c | |||
| 44b7c22a5d | |||
| 8fbbbb444d | |||
| 152e336f93 | |||
| 752a1e28d0 | |||
| 61b7f2f5dc | |||
| 73ba3446fb | |||
| c847b8bedf | |||
| 10dde80159 | |||
| 5bac238988 | |||
| babd0072a7 | |||
| 4dc7390d49 | |||
| a9bb96353f | |||
| afcae12018 | |||
| 6f5fdd3c45 | |||
| 7e412f768c | |||
| ab399b3c32 | |||
| 5616111f61 | |||
| c163e38dd4 | |||
| 390341f7a5 | |||
| a126208ff0 | |||
| a7a3b3457b | |||
| 333651705f | |||
| 080b9e9fe6 | |||
| 7aaeb09dad | |||
| e627f90a87 |
@@ -1,4 +1,4 @@
|
|||||||
"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';
|
||||||
@@ -46,7 +46,7 @@ export default function FitCoachPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCarouselLogo
|
<HeroCarouselLogo
|
||||||
logoText="FITCOACH"
|
logoText="FITCOACH"
|
||||||
description="See changes in 12 weeks. Transform your body and mind with expert personal coaching. Get measurable results with our data-driven approach."
|
description="Transform your body and mind with expert personal coaching. Achieve your fitness goals with customized training programs."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Your Journey", href: "#contact" },
|
{ text: "Start Your Journey", href: "#contact" },
|
||||||
{ text: "Learn More", href: "#about" }
|
{ text: "Learn More", href: "#about" }
|
||||||
@@ -64,6 +64,9 @@ export default function FitCoachPage() {
|
|||||||
]}
|
]}
|
||||||
autoplayDelay={4000}
|
autoplayDelay={4000}
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
|
logoClassName="!text-white"
|
||||||
|
descriptionClassName="!text-white"
|
||||||
|
buttonTextClassName="!text-white"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -252,21 +255,21 @@ export default function FitCoachPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact" style={{ backgroundColor: "#000000" }}>
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Newsletter"
|
tag="Free Workout Plan"
|
||||||
title="Ready to Transform Your Fitness Journey?"
|
title="Get Your Free 7-Day Home Workout Plan"
|
||||||
description="Subscribe to our newsletter for exclusive training tips, nutrition advice, and member-only promotions. Join our community of successful fitness transformations."
|
description="Download our complete beginner-friendly workout program with video demonstrations, nutrition tips, and progress tracking templates. Start your transformation today!"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={true}
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/equipments-gym_93675-129485.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/equipments-gym_93675-129485.jpg"
|
||||||
imageAlt="Modern gym facility"
|
imageAlt="Modern gym facility"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email for instant access"
|
||||||
buttonText="Join Community"
|
buttonText="Get Free Plan"
|
||||||
termsText="We respect your privacy. Unsubscribe anytime. By joining, you agree to receive emails about fitness tips and exclusive offers."
|
termsText="Instant download. No spam, unsubscribe anytime. Join 2,500+ members getting results with our proven training methods."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #ffffffe6;;
|
||||||
--primary-cta: #159c49;;
|
--primary-cta: #ff8c42;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;;
|
||||||
--accent: #159c49;;
|
--accent: #ff8c42;;
|
||||||
--background-accent: #a8e8ba;; */
|
--background-accent: #4d2600;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #ffffffe6;;
|
||||||
--primary-cta: #159c49;;
|
--primary-cta: #ff8c42;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1a1a1a;;
|
||||||
--accent: #159c49;;
|
--accent: #ff8c42;;
|
||||||
--background-accent: #a8e8ba;;
|
--background-accent: #4d2600;;
|
||||||
|
|
||||||
/* 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