Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #8.
This commit is contained in:
2026-03-09 21:08:23 +00:00

View File

@@ -9,10 +9,10 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import ContactForm from "@/components/form/ContactForm";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Home, Users, TrendingUp, Award, Package, Phone } from "lucide-react";
import { Home, Users, TrendingUp, Award, Package, Phone, Mail } from "lucide-react";
export default function HomePage() {
return (
@@ -61,6 +61,7 @@ export default function HomePage() {
text: "Schedule Consultation", href: "/contact"
}
]}
ariaLabel="Hero section with Tel-Aviv property showcase"
/>
</div>
@@ -90,6 +91,7 @@ export default function HomePage() {
text: "View All Properties", href: "/properties"
}
]}
ariaLabel="Featured property listings"
/>
</div>
@@ -120,6 +122,7 @@ export default function HomePage() {
title: "Industry Awards", value: "18"
}
]}
ariaLabel="Company metrics and achievements"
/>
</div>
@@ -148,6 +151,7 @@ export default function HomePage() {
]
}
]}
ariaLabel="Real estate services overview"
/>
</div>
@@ -174,20 +178,22 @@ export default function HomePage() {
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=8", imageAlt: "Rachel Levy testimonial"
}
]}
ariaLabel="Client testimonials and success stories"
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactForm
title="Get in Touch"
description="Join our mailing list to receive updates on new properties and exclusive investment opportunities."
tag="Newsletter Signup"
tagIcon={Phone}
description="Join our mailing list to get exclusive property listings and real estate market updates."
tag="Newsletter"
tagIcon={Mail}
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime."
onSubmit={(email) => console.log('Newsletter signup:', email)}
centered={true}
centered={false}
ariaLabel="Contact form section"
/>
</div>
@@ -209,6 +215,7 @@ export default function HomePage() {
variant: "plain"
}}
useInvertedBackground={false}
ariaLabel="Contact and consultation call-to-action"
/>
</div>
@@ -265,8 +272,9 @@ export default function HomePage() {
}
]}
copyrightText="© 2025 TelAviv Realty | Premium Real Estate in Tel-Aviv"
ariaLabel="Website footer with navigation links"
/>
</div>
</ThemeProvider>
);
}
}