Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a32551a03a | |||
| b66da19d1c | |||
| cf76caf314 |
@@ -2,17 +2,17 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||||
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import { Dumbbell, Scale, UserCheck } from 'lucide-react';
|
import { Dumbbell, Scale, UserCheck, MapPin, Mail, Phone } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -134,36 +134,35 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitText
|
<FaqSplitMedia
|
||||||
useInvertedBackground={true}
|
title="Common Questions"
|
||||||
|
description="Frequently Asked Questions about our facility and services."
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "f1", title: "Do you offer demo classes?", content: "Yes, we encourage newcomers to try a session." },
|
{ id: "f1", title: "Do you offer demo classes?", content: "Yes, we encourage newcomers to try a session." },
|
||||||
{ id: "f2", title: "What are the timings?", content: "We operate from 6 AM to 10 PM daily." },
|
{ id: "f2", title: "What are the timings?", content: "We operate from 6 AM to 10 PM daily." },
|
||||||
{ id: "f3", title: "Is personal training available?", content: "Absolutely, tailored 1-on-1 sessions are available." }
|
{ id: "f3", title: "Is personal training available?", content: "Absolutely, tailored 1-on-1 sessions are available." }
|
||||||
]}
|
]}
|
||||||
sideTitle="Common Questions"
|
imageSrc="http://img.b2bpic.net/free-photo/gym-background_123.jpg"
|
||||||
sideDescription="Need help? Check out our FAQs."
|
|
||||||
faqsAnimation="blur-reveal"
|
faqsAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{ variant: "sparkles-gradient" }}
|
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
title="Start Your Fitness Journey"
|
title="Visit C2 Fitness"
|
||||||
description="Visit us above Hero Motors in MKB Nagar, Chennai. Contact us for inquiries or to schedule a visit."
|
description="Located in MKB Nagar, Chennai. Reach out for membership details or visit us during working hours."
|
||||||
buttons={[{ text: "Call Now", href: "tel:+914400000000" }]}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterBaseCard
|
||||||
logoText="C2 FITNESS"
|
logoText="C2 FITNESS"
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Information", items: [{ label: "Contact", href: "#contact" }, { label: "FAQs", href: "#faq" }] },
|
{ title: "Information", items: [{ label: "Contact", href: "#contact" }, { label: "FAQs", href: "#faq" }] },
|
||||||
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#features" }] }
|
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#features" }] },
|
||||||
|
{ title: "Visit Us", items: [{ label: "MKB Nagar, Chennai", href: "#" }] }
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 C2 Fitness. All rights reserved."
|
copyrightText="© 2025 C2 Fitness. All rights reserved."
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user