Compare commits
28 Commits
version_51
...
version_52
| Author | SHA1 | Date | |
|---|---|---|---|
| 9cc8745867 | |||
| cb201eb9cc | |||
| 88bb22c70d | |||
| 5a697f081d | |||
| fbe2db5357 | |||
| a31b1fe5c6 | |||
| cc80b7f021 | |||
| 106528acb2 | |||
| a59ccd429b | |||
| d3087c4db6 | |||
| 2a46b6b3d0 | |||
| a051a7d07b | |||
| e0a0c83594 | |||
| a853d8e56a | |||
| 8c306d12de | |||
| edab4109e2 | |||
| 854f58a3cf | |||
| 10df02a220 | |||
| f0c9b75aea | |||
| 70f0490e3e | |||
| ba934cdc2b | |||
| 585957191a | |||
| 19dc31128a | |||
| 1293e5e9df | |||
| 232a1e623a | |||
| 0a109b9b41 | |||
| 088fe1d69f | |||
| b30e709a38 |
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
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 FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
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 HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||||
@@ -218,25 +218,34 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplitForm
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
|
||||||
variant: "radial-gradient"}}
|
|
||||||
tag="GET STARTED"
|
|
||||||
title="Transform Your Listings Today"
|
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."
|
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"
|
imageSrc="http://img.b2bpic.net/free-photo/business-man-working-hotel-room_1150-6380.jpg"
|
||||||
imageAlt="ReelEstate contact form mockup"
|
imageAlt="ReelEstate contact form mockup"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Your Email Address"
|
|
||||||
buttonText="Send Listing"
|
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>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterBaseCard
|
||||||
|
logoText="ReelEstate"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
@@ -271,8 +280,8 @@ export default function LandingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 ReelEstate. All rights reserved."
|
copyrightText="© 2024 ReelEstate. All rights reserved."
|
||||||
bottomRightText="Made with AI for Dubai Realty"
|
onPrivacyClick={() => console.log('Privacy policy clicked')}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user