Update src/app/page.tsx

This commit is contained in:
2026-03-09 20:49:47 +00:00
parent 2387039926
commit 07fce3ee73

View File

@@ -8,7 +8,7 @@ import ProductCardFour from "@/components/sections/product/ProductCardFour";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Home, Users, TrendingUp, Award, Package, Phone } from "lucide-react";
@@ -38,8 +38,7 @@ export default function HomePage() {
{ name: "FAQ", id: "/faq" }
]}
button={{
text: "Schedule Viewing",
href: "/contact"
text: "Schedule Viewing", href: "/contact"
}}
/>
</div>
@@ -55,12 +54,10 @@ export default function HomePage() {
showDimOverlay={true}
buttons={[
{
text: "Browse Properties",
href: "/properties"
text: "Browse Properties", href: "/properties"
},
{
text: "Schedule Consultation",
href: "/contact"
text: "Schedule Consultation", href: "/contact"
}
]}
ariaLabel="Hero section with Tel-Aviv property showcase"
@@ -79,34 +76,18 @@ export default function HomePage() {
gridVariant="uniform-all-items-equal"
products={[
{
id: "prop-1",
name: "Luxury Penthouse - Ramat Hasharon",
price: "$2,500,000",
variant: "5 Bedrooms | 300 sqm",
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=1",
imageAlt: "Luxury penthouse with panoramic city views"
id: "prop-1", name: "Luxury Penthouse - Ramat Hasharon", price: "$2,500,000", variant: "5 Bedrooms | 300 sqm", imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=1", imageAlt: "Luxury penthouse with panoramic city views"
},
{
id: "prop-2",
name: "Beachfront Apartment - South Tel-Aviv",
price: "$1,800,000",
variant: "3 Bedrooms | 180 sqm",
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=2",
imageAlt: "Modern beachfront apartment with sea view"
id: "prop-2", name: "Beachfront Apartment - South Tel-Aviv", price: "$1,800,000", variant: "3 Bedrooms | 180 sqm", imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=2", imageAlt: "Modern beachfront apartment with sea view"
},
{
id: "prop-3",
name: "Modern Villa - Herzl Street",
price: "$3,200,000",
variant: "6 Bedrooms | 450 sqm",
imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=1",
imageAlt: "Spacious modern villa with private garden"
id: "prop-3", name: "Modern Villa - Herzl Street", price: "$3,200,000", variant: "6 Bedrooms | 450 sqm", imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=1", imageAlt: "Spacious modern villa with private garden"
}
]}
buttons={[
{
text: "View All Properties",
href: "/properties"
text: "View All Properties", href: "/properties"
}
]}
ariaLabel="Featured property listings"
@@ -117,23 +98,19 @@ export default function HomePage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text",
content: "20+ Years of Excellence in"
type: "text", content: "20+ Years of Excellence in"
},
{
type: "text",
content: "Tel-Aviv Real Estate"
type: "text", content: "Tel-Aviv Real Estate"
}
]}
useInvertedBackground={false}
buttons={[
{
text: "Learn Our Story",
href: "/about"
text: "Learn Our Story", href: "/about"
},
{
text: "Meet Our Team",
href: "/contact"
text: "Meet Our Team", href: "/contact"
}
]}
ariaLabel="Company overview and mission"
@@ -151,28 +128,20 @@ export default function HomePage() {
animationType="slide-up"
metrics={[
{
id: "1",
icon: Home,
title: "Properties Sold",
value: "850+"
id: "1", icon: Home,
title: "Properties Sold", value: "850+"
},
{
id: "2",
icon: Users,
title: "Happy Clients",
value: "2,400+"
id: "2", icon: Users,
title: "Happy Clients", value: "2,400+"
},
{
id: "3",
icon: TrendingUp,
title: "Market Growth",
value: "35%"
id: "3", icon: TrendingUp,
title: "Market Growth", value: "35%"
},
{
id: "4",
icon: Award,
title: "Industry Awards",
value: "18"
id: "4", icon: Award,
title: "Industry Awards", value: "18"
}
]}
ariaLabel="Company metrics and achievements"
@@ -189,33 +158,18 @@ export default function HomePage() {
animationType="slide-up"
features={[
{
id: "buying",
label: "Buying",
title: "Expert Guidance Through Purchase",
items: [
"Property search and viewing coordination",
"Market analysis and price negotiation",
"Legal documentation and closing support"
id: "buying", label: "Buying", title: "Expert Guidance Through Purchase", items: [
"Property search and viewing coordination", "Market analysis and price negotiation", "Legal documentation and closing support"
]
},
{
id: "selling",
label: "Selling",
title: "Maximize Your Property Value",
items: [
"Professional property valuation",
"Marketing and buyer matching",
"Fast closing and settlement services"
id: "selling", label: "Selling", title: "Maximize Your Property Value", items: [
"Professional property valuation", "Marketing and buyer matching", "Fast closing and settlement services"
]
},
{
id: "investing",
label: "Investing",
title: "Build Your Real Estate Portfolio",
items: [
"Investment opportunity analysis",
"ROI projections and market trends",
"Portfolio management and growth strategy"
id: "investing", label: "Investing", title: "Build Your Real Estate Portfolio", items: [
"Investment opportunity analysis", "ROI projections and market trends", "Portfolio management and growth strategy"
]
}
]}
@@ -223,6 +177,33 @@ export default function HomePage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="What Our Clients Say"
description="Real experiences from satisfied clients who found their perfect properties with TelAviv Realty"
tag="Client Success Stories"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="uniform-all-items-equal"
testimonials={[
{
id: "1", name: "Sarah Cohen", role: "Property Buyer", company: "Tel-Aviv", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=7", imageAlt: "Sarah Cohen testimonial"
},
{
id: "2", name: "David Rothman", role: "Real Estate Investor", company: "Investment Portfolio", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=4", imageAlt: "David Rothman testimonial"
},
{
id: "3", name: "Rachel Levy", role: "Property Seller", company: "Ramat Hasharon", rating: 5,
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" data-section="contact">
<ContactCTA
tag="Get in Touch"
@@ -231,12 +212,10 @@ export default function HomePage() {
description="Our expert team is ready to help you navigate the Tel-Aviv real estate market. Schedule a consultation today and take the first step toward your property goals."
buttons={[
{
text: "Schedule Consultation",
href: "/contact"
text: "Schedule Consultation", href: "/contact"
},
{
text: "Browse Properties",
href: "/properties"
text: "Browse Properties", href: "/properties"
}
]}
background={{
@@ -251,65 +230,50 @@ export default function HomePage() {
<FooterBaseReveal
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about"
label: "About Us", href: "/about"
},
{
label: "Our Team",
href: "/about"
label: "Our Team", href: "/about"
},
{
label: "Properties",
href: "/properties"
label: "Properties", href: "/properties"
},
{
label: "Blog",
href: "https://blog.telavivrealty.com"
label: "Blog", href: "https://blog.telavivrealty.com"
}
]
},
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Buy Property",
href: "/properties"
label: "Buy Property", href: "/properties"
},
{
label: "Sell Property",
href: "/contact"
label: "Sell Property", href: "/contact"
},
{
label: "Investment",
href: "/contact"
label: "Investment", href: "/contact"
},
{
label: "Consultation",
href: "/contact"
label: "Consultation", href: "/contact"
}
]
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#"
label: "Privacy Policy", href: "#"
},
{
label: "Terms & Conditions",
href: "#"
label: "Terms & Conditions", href: "#"
},
{
label: "Contact",
href: "/contact"
label: "Contact", href: "/contact"
},
{
label: "Careers",
href: "#"
label: "Careers", href: "#"
}
]
}