Update src/app/page.tsx

This commit is contained in:
2026-06-02 21:18:54 +00:00
parent cb201eb9cc
commit 9cc8745867

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
@@ -218,25 +218,34 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
<ContactSplitForm
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
tag="GET STARTED"
title="Transform Your Listings Today"
description="Ready to generate high-quality leads without spending a fortune on ads? Send us your listing details, and we'll show you the ReelEstate difference with a free sample. Let's close more deals."
imageSrc="http://img.b2bpic.net/free-photo/business-man-working-hotel-room_1150-6380.jpg"
imageAlt="ReelEstate contact form mockup"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Your Email Address"
buttonText="Send Listing"
termsText="By clicking Send Listing you're confirming that you agree with our Terms and Conditions."
inputs={[
{name: "name", type: "text", placeholder: "Your Name", required: true},
{name: "email", type: "email", placeholder: "Your Email Address", required: true},
{name: "phone", type: "tel", placeholder: "Your Phone Number", required: false}
]}
multiSelect={{
name: "subject", label: "How can we help?", options: ["General Inquiry", "Free Sample Request", "Partnership", "Other"]
}}
textarea={{
name: "message", placeholder: "Your Message", rows: 5,
required: false
}}
onSubmit={(data) => console.log(data)}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBaseCard
logoText="ReelEstate"
columns={[
{
title: "Services", items: [
@@ -271,8 +280,8 @@ export default function LandingPage() {
],
},
]}
bottomLeftText="© 2024 ReelEstate. All rights reserved."
bottomRightText="Made with AI for Dubai Realty"
copyrightText="© 2024 ReelEstate. All rights reserved."
onPrivacyClick={() => console.log('Privacy policy clicked')}
/>
</div>
</ReactLenis>