Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2533d02641 | |||
| d279292383 | |||
| 09caa56b7a | |||
| 17b4ca2e8e | |||
| 9386de6f11 | |||
| 1fb660457b | |||
| 039638a8b1 | |||
| fe52d74ceb | |||
| 764db689b2 | |||
| 72e3f2aadb |
@@ -2,10 +2,10 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
@@ -51,6 +51,9 @@ export default function LandingPage() {
|
||||
title="Your New Chapter Starts Here"
|
||||
description="Square One Real Estate delivers seamless property solutions with expertise, integrity, and a personalized approach to every transaction."
|
||||
tag="Trusted Real Estate Experts"
|
||||
buttons={[
|
||||
{ text: "Browse Listings", href: "#products" }
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-building-exterior-night-with-architectural-lighting_84443-74866.jpg?_wi=1", imageAlt: "Modern luxury home exterior"},
|
||||
@@ -152,7 +155,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "4", name: "Robert Smith", date: "Aug 2023", title: "Seller", quote: "Professionalism from start to finish.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-child-hugging-their-parents_1098-890.jpg", imageSrc: "http://img.b2bpic.net/free-photo/pollution-concept-with-town-full-smoke_23-2149094924.jpg", imageAlt: "professional portrait friendly client"},
|
||||
{
|
||||
id: "5", name: "Lisa Wang", date: "July 2023", title: "Buyer", quote: "They found our dream home in record time.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", imageSrc: "http://img.b2bpic.net/free-vector/insurance-simple-element_24908-54322.jpg", imageAlt: "professional portrait friendly client"},
|
||||
id: "5", name: "Lisa Wang", date: "July 2023", title: "Buyer", quote: "They found our dream home in record time.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", imageSrc: "http://img.b2bvector.net/free-vector/insurance-simple-element_24908-54322.jpg", imageAlt: "professional portrait friendly client"},
|
||||
]}
|
||||
title="Client Success Stories"
|
||||
description="See why homeowners choose Square One for their biggest decisions."
|
||||
@@ -169,7 +172,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "q2", title: "Do you handle property inspections?", content: "Yes, we coordinate all necessary inspections for peace of mind."},
|
||||
{
|
||||
id: "q3", title: "What's the first step for buying?", content: "Contact us for a pre-approval and consultation."},
|
||||
id: "q3", title: "What's the first step for buying?", content: "The first step is securing a pre-approval. This confirms your budget, strengthens your offer, and shows sellers you are a serious, ready-to-move buyer."},
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Find quick answers to your real estate queries."
|
||||
@@ -178,36 +181,28 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
<ContactSplit
|
||||
tag="Inquire"
|
||||
title="Connect With Us"
|
||||
description="Ready to get started? Send us a message and we'll reach out promptly."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "How can we help?", rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/living-room-blurred_1203-50.jpg"
|
||||
buttonText="Submit"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="none"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
<FooterLogoEmphasis
|
||||
logoText="Square One Real Estate"
|
||||
leftLink={{
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Terms of Service", href: "#"}}
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "#hero" }, { label: "Properties", href: "#products" }] },
|
||||
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user