Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 378072cbec | |||
| 4844936c2a | |||
| fd94fda396 | |||
| 454393c57b | |||
| b67386ac33 | |||
| 37c12dec85 | |||
| 2d33addc91 | |||
| d3e740adf9 | |||
| bfe0bbbd3f | |||
| f24af18a8c | |||
| 7254b33302 |
@@ -3,7 +3,6 @@ import { Halant } from "next/font/google";
|
|||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
|
||||||
@@ -60,7 +59,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp
|
|||||||
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||||
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||||
import ContactForm from "@/components/form/ContactForm";
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Home, Users, TrendingUp, Award, Package, Phone, Mail } from "lucide-react";
|
import { Home, Users, TrendingUp, Award, Package, Phone, Mail } from "lucide-react";
|
||||||
@@ -178,17 +178,23 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact-form" data-section="contact-form">
|
<div id="contact-form" data-section="contact-form">
|
||||||
<ContactForm
|
<ContactSplitForm
|
||||||
title="Get in Touch"
|
title="Get in Touch"
|
||||||
description="Join our mailing list to get exclusive property listings and real estate market updates."
|
description="Have questions about our properties or services? Contact our team for expert real estate guidance and support."
|
||||||
tag="Newsletter"
|
inputs={[
|
||||||
tagIcon={Mail}
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
inputPlaceholder="Enter your email"
|
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
||||||
buttonText="Subscribe"
|
]}
|
||||||
termsText="We respect your privacy. Unsubscribe anytime."
|
textarea={{
|
||||||
onSubmit={(email) => console.log('Newsletter signup:', email)}
|
name: "message", placeholder: "Tell us about your real estate needs...", rows: 5,
|
||||||
centered={false}
|
required: true
|
||||||
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/city-sunset_181624-8834.jpg?_wi=1"
|
||||||
|
mediaPosition="right"
|
||||||
|
buttonText="Send Message"
|
||||||
|
mediaAnimation="none"
|
||||||
|
onSubmit={(data) => console.log('Contact form submitted:', data)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user