5 Commits

Author SHA1 Message Date
e469bbc74c Merge version_3 into main
Merge version_3 into main
2026-05-13 12:27:23 +00:00
6b327a5a16 Update src/app/page.tsx 2026-05-13 12:27:20 +00:00
972a04377c Merge version_3 into main
Merge version_3 into main
2026-05-13 12:26:48 +00:00
e8c15f0c12 Update src/app/page.tsx 2026-05-13 12:26:45 +00:00
a427fd5471 Merge version_2 into main
Merge version_2 into main
2026-05-13 12:21:43 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
@@ -142,23 +142,21 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactText
useInvertedBackground={true} text="Ready to transform your health? Join our professional community and start your journey with us today."
buttons={[{ text: "Get Started", href: "#" }]}
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
tag="Contact Us" useInvertedBackground={false}
title="Start Your Fitness Journey"
description="Sign up today to get your first week free and a personal trainer consultation."
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterBase
logoText="California Gym"
columns={[ columns={[
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Team", href: "#team" }, { label: "Careers", href: "#" }] }, { title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Team", href: "#team" }, { label: "Careers", href: "#" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#" }, { label: "Contact", href: "#contact" }, { label: "Terms", href: "#" }] }, { title: "Support", items: [{ label: "FAQ", href: "#" }, { label: "Contact", href: "#contact" }, { label: "Terms", href: "#" }] },
]} ]}
bottomLeftText="© 2024 California Gym Sousse"
bottomRightText="All Rights Reserved"
/> />
</div> </div>
</ReactLenis> </ReactLenis>