Update src/app/page.tsx

This commit is contained in:
2026-05-20 10:44:27 +00:00
parent 8b3d13624f
commit 25689bbde5

View File

@@ -3,10 +3,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap, Shield, Star, Clipboard, Apple } from 'lucide-react';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -38,7 +38,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
brandName="Dubai Fitness Pro"
button={{ text: "Get Started", href: "/contact" }}
button={{ text: "Get Started", href: "#contact" }}
/>
</div>
@@ -152,7 +152,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
faqs={[
@@ -163,31 +163,30 @@ export default function LandingPage() {
title="Frequently Asked Questions"
description="Common questions about our gym and training programs."
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-women-gym-talking_23-2148419847.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={true}
<ContactCTA
tag="Contact Us"
title="Start Your Fitness Journey"
description="Ready to hit your goals? Visit us or reach out via the form below."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
{ name: "email", type: "email", placeholder: "Email Address" },
]}
imageSrc="http://img.b2bpic.net/free-photo/fitness-healthy-young-woman-stretching-her-leg-standing-hardwood-floor_23-2148038197.jpg"
description="Ready to hit your goals? Visit us or reach out via our team to discuss your tailored plan."
buttons={[{ text: "Book Consultation", href: "#contact" }]}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterBaseReveal
logoText="Dubai Fitness Pro"
copyrightText="© 2025 Dubai Fitness Pro. All rights reserved."
columns={[
{ title: "General", items: [{ label: "About", href: "#about" }, { label: "Features", href: "#features" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}