Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 378072cbec | |||
| 4844936c2a | |||
| fd94fda396 | |||
| 454393c57b | |||
| b67386ac33 | |||
| 37c12dec85 | |||
| 2d33addc91 | |||
| 15b43583af | |||
| d3e740adf9 | |||
| d9c2460bae | |||
| bfe0bbbd3f | |||
| 55d69afaac | |||
| f24af18a8c | |||
| 1bc6882928 | |||
| 7254b33302 | |||
| 6a460903a2 | |||
| 3c00be555e |
@@ -3,7 +3,6 @@ import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
@@ -60,7 +59,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
|
||||
@@ -9,9 +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 ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
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 (
|
||||
@@ -60,7 +61,6 @@ export default function HomePage() {
|
||||
text: "Schedule Consultation", href: "/contact"
|
||||
}
|
||||
]}
|
||||
ariaLabel="Hero section with Tel-Aviv property showcase"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -90,7 +90,6 @@ export default function HomePage() {
|
||||
text: "View All Properties", href: "/properties"
|
||||
}
|
||||
]}
|
||||
ariaLabel="Featured property listings"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -121,7 +120,6 @@ export default function HomePage() {
|
||||
title: "Industry Awards", value: "18"
|
||||
}
|
||||
]}
|
||||
ariaLabel="Company metrics and achievements"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -150,7 +148,6 @@ export default function HomePage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
ariaLabel="Real estate services overview"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -177,7 +174,27 @@ 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">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch"
|
||||
description="Have questions about our properties or services? Contact our team for expert real estate guidance and support."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell us about your real estate needs...", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
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>
|
||||
|
||||
@@ -199,7 +216,6 @@ export default function HomePage() {
|
||||
variant: "plain"
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Contact and consultation call-to-action"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -256,7 +272,6 @@ export default function HomePage() {
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 TelAviv Realty | Premium Real Estate in Tel-Aviv"
|
||||
ariaLabel="Website footer with navigation links"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user