Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4844936c2a | |||
| 454393c57b | |||
| 37c12dec85 | |||
| 2d33addc91 | |||
| 15b43583af | |||
| d3e740adf9 | |||
| d9c2460bae | |||
| bfe0bbbd3f | |||
| 55d69afaac | |||
| f24af18a8c | |||
| 1bc6882928 | |||
| 7254b33302 | |||
| 6a460903a2 | |||
| 3c00be555e | |||
| b3be36a145 | |||
| 2e937702a6 | |||
| 8406965558 | |||
| 4105d91be8 | |||
| 6c040999b6 | |||
| 07fce3ee73 | |||
| 2387039926 | |||
| 4f01547ac9 | |||
| aa16e105fb | |||
| b2cebd53f5 | |||
| 4a04ffb207 | |||
| bd567893f7 |
@@ -3,7 +3,6 @@
|
|||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
|
||||||
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 FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
@@ -11,35 +10,32 @@ import { Home, Users, TrendingUp, Award } from "lucide-react";
|
|||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Properties", id: "properties" },
|
{ name: "Properties", id: "/properties" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/faq" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Our Team", href: "/about" },
|
{ label: "Our Team", href: "/about" },
|
||||||
{ label: "Properties", href: "/" },
|
{ label: "Properties", href: "/properties" },
|
||||||
{ label: "Blog", href: "https://blog.telavivrealty.com" },
|
{ label: "Blog", href: "https://blog.telavivrealty.com" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
{ label: "Buy Property", href: "/properties" },
|
||||||
{ label: "Buy Property", href: "/" },
|
|
||||||
{ 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",
|
title: "Legal", items: [
|
||||||
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" },
|
||||||
@@ -66,36 +62,7 @@ export default function AboutPage() {
|
|||||||
brandName="TelAviv Realty"
|
brandName="TelAviv Realty"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Schedule Viewing",
|
text: "Schedule Viewing", href: "/contact"}}
|
||||||
href: "/contact",
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<InlineImageSplitTextAbout
|
|
||||||
heading={[
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
content: "20+ Years of Excellence in",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
content: "Tel-Aviv Real Estate",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Learn Our Story",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Meet Our Team",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
ariaLabel="Company overview and mission"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -103,29 +70,17 @@ export default function AboutPage() {
|
|||||||
<MetricCardThree
|
<MetricCardThree
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", icon: Home,
|
||||||
icon: Home,
|
title: "Properties Sold", value: "850+"},
|
||||||
title: "Properties Sold",
|
|
||||||
value: "850+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", icon: Users,
|
||||||
icon: Users,
|
title: "Happy Clients", value: "2,400+"},
|
||||||
title: "Happy Clients",
|
|
||||||
value: "2,400+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", icon: TrendingUp,
|
||||||
icon: TrendingUp,
|
title: "Market Growth", value: "35%"},
|
||||||
title: "Market Growth",
|
|
||||||
value: "35%",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", icon: Award,
|
||||||
icon: Award,
|
title: "Industry Awards", value: "18"},
|
||||||
title: "Industry Awards",
|
|
||||||
value: "18",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Track Record"
|
title="Our Track Record"
|
||||||
description="Proven success in connecting clients with their perfect properties"
|
description="Proven success in connecting clients with their perfect properties"
|
||||||
@@ -142,34 +97,16 @@ export default function AboutPage() {
|
|||||||
<FeatureCardTwelve
|
<FeatureCardTwelve
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "buying",
|
id: "buying", label: "Buying", title: "Expert Guidance Through Purchase", items: [
|
||||||
label: "Buying",
|
"Property search and viewing coordination", "Market analysis and price negotiation", "Legal documentation and closing support"],
|
||||||
title: "Expert Guidance Through Purchase",
|
|
||||||
items: [
|
|
||||||
"Property search and viewing coordination",
|
|
||||||
"Market analysis and price negotiation",
|
|
||||||
"Legal documentation and closing support",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "selling",
|
id: "selling", label: "Selling", title: "Maximize Your Property Value", items: [
|
||||||
label: "Selling",
|
"Professional property valuation", "Marketing and buyer matching", "Fast closing and settlement services"],
|
||||||
title: "Maximize Your Property Value",
|
|
||||||
items: [
|
|
||||||
"Professional property valuation",
|
|
||||||
"Marketing and buyer matching",
|
|
||||||
"Fast closing and settlement services",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "investing",
|
id: "investing", label: "Investing", title: "Build Your Real Estate Portfolio", items: [
|
||||||
label: "Investing",
|
"Investment opportunity analysis", "ROI projections and market trends", "Portfolio management and growth strategy"],
|
||||||
title: "Build Your Real Estate Portfolio",
|
|
||||||
items: [
|
|
||||||
"Investment opportunity analysis",
|
|
||||||
"ROI projections and market trends",
|
|
||||||
"Portfolio management and growth strategy",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
@@ -4,41 +4,39 @@ import Link from "next/link";
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Phone } from "lucide-react";
|
import { Phone } from "lucide-react";
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Properties", id: "properties" },
|
{ name: "Properties", id: "/properties" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "/faq" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Our Team", href: "/about" },
|
{ label: "Our Team", href: "/about" },
|
||||||
{ label: "Properties", href: "/" },
|
{ label: "Properties", href: "/properties" },
|
||||||
{ label: "Blog", href: "https://blog.telavivrealty.com" },
|
{ label: "Blog", href: "https://blog.telavivrealty.com" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
{ label: "Buy Property", href: "/properties" },
|
||||||
{ label: "Buy Property", href: "/" },
|
|
||||||
{ 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",
|
title: "Legal", items: [
|
||||||
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" },
|
||||||
@@ -65,9 +63,29 @@ export default function ContactPage() {
|
|||||||
brandName="TelAviv Realty"
|
brandName="TelAviv Realty"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Schedule Viewing",
|
text: "Schedule Viewing", href: "/contact"}}
|
||||||
href: "/contact",
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact-form" data-section="contact-form">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Contact Us"
|
||||||
|
tagIcon={Phone}
|
||||||
|
title="Get in Touch with Our Team"
|
||||||
|
description="Have questions about properties or ready to schedule a viewing? Fill out the form below and our expert team will be in touch within 24 hours."
|
||||||
|
background={{
|
||||||
|
variant: "plain"
|
||||||
}}
|
}}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/city-sunset_181624-8834.jpg?_wi=1"
|
||||||
|
imageAlt="Contact our team"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
inputPlaceholder="Enter your email"
|
||||||
|
buttonText="Send"
|
||||||
|
termsText="We respect your privacy. Your information will be kept confidential."
|
||||||
|
onSubmit={(email) => console.log('Contact form submitted:', email)}
|
||||||
|
ariaLabel="Contact form section"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -79,17 +97,12 @@ export default function ContactPage() {
|
|||||||
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."
|
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={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Consultation",
|
text: "Schedule Consultation", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Browse Properties",
|
text: "Browse Properties", href: "/properties"},
|
||||||
href: "/",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
ariaLabel="Contact and consultation call-to-action"
|
ariaLabel="Contact and consultation call-to-action"
|
||||||
/>
|
/>
|
||||||
@@ -99,41 +112,23 @@ export default function ContactPage() {
|
|||||||
<FaqBase
|
<FaqBase
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What areas in Tel-Aviv do you specialize in?", content:
|
||||||
title: "What areas in Tel-Aviv do you specialize in?",
|
"We specialize in all major neighborhoods including Ramat Hasharon, South Tel-Aviv, Herzl Street, and Tel-Aviv Port area. Our team has deep market knowledge across the entire city and surrounding suburbs."},
|
||||||
content:
|
|
||||||
"We specialize in all major neighborhoods including Ramat Hasharon, South Tel-Aviv, Herzl Street, and Tel-Aviv Port area. Our team has deep market knowledge across the entire city and surrounding suburbs.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "How long does the buying process typically take?", content:
|
||||||
title: "How long does the buying process typically take?",
|
"The average buying process takes 4-8 weeks from offer to closing. This includes property inspection, financing approval, legal review, and final settlement. Rush closings can be arranged for motivated buyers."},
|
||||||
content:
|
|
||||||
"The average buying process takes 4-8 weeks from offer to closing. This includes property inspection, financing approval, legal review, and final settlement. Rush closings can be arranged for motivated buyers.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "What are the current market trends in Tel-Aviv?", content:
|
||||||
title: "What are the current market trends in Tel-Aviv?",
|
"The Tel-Aviv market remains strong with steady appreciation, especially in premium neighborhoods. Average property values have appreciated 5-7% annually. We provide detailed market reports to all clients."},
|
||||||
content:
|
|
||||||
"The Tel-Aviv market remains strong with steady appreciation, especially in premium neighborhoods. Average property values have appreciated 5-7% annually. We provide detailed market reports to all clients.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Do you handle international buyers and sellers?", content:
|
||||||
title: "Do you handle international buyers and sellers?",
|
"Yes, we work extensively with international clients. We can assist with visa requirements, currency exchange, and legal documentation for foreign nationals. Many of our clients are from Europe and North America."},
|
||||||
content:
|
|
||||||
"Yes, we work extensively with international clients. We can assist with visa requirements, currency exchange, and legal documentation for foreign nationals. Many of our clients are from Europe and North America.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "What are your commission rates?", content:
|
||||||
title: "What are your commission rates?",
|
"Our standard commission is 1.5% for sellers and varies for buyers. We also offer negotiated rates for investment portfolios. We're transparent about all fees with no hidden charges."},
|
||||||
content:
|
|
||||||
"Our standard commission is 1.5% for sellers and varies for buyers. We also offer negotiated rates for investment portfolios. We're transparent about all fees with no hidden charges.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Can you help with property rentals?", content:
|
||||||
title: "Can you help with property rentals?",
|
"While our primary focus is sales, we maintain connections with rental property specialists. We can refer you to trusted partners for short and long-term rental opportunities."},
|
||||||
content:
|
|
||||||
"While our primary focus is sales, we maintain connections with rental property specialists. We can refer you to trusted partners for short and long-term rental opportunities.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Find answers to common questions about buying, selling, and investing in Tel-Aviv real estate"
|
description="Find answers to common questions about buying, selling, and investing in Tel-Aviv real estate"
|
||||||
|
|||||||
@@ -34,8 +34,7 @@ export default function FaqPage() {
|
|||||||
{ name: "FAQ", id: "/faq" }
|
{ name: "FAQ", id: "/faq" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Schedule Viewing",
|
text: "Schedule Viewing", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -51,12 +50,10 @@ export default function FaqPage() {
|
|||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Contact Us",
|
text: "Contact Us", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Browse Properties",
|
text: "Browse Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="FAQ page hero section"
|
ariaLabel="FAQ page hero section"
|
||||||
@@ -74,44 +71,28 @@ export default function FaqPage() {
|
|||||||
animationType="smooth"
|
animationType="smooth"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What areas in Tel-Aviv do you specialize in?", content: "We specialize in all major neighborhoods including Ramat Hasharon, South Tel-Aviv, Herzl Street, and Tel-Aviv Port area. Our team has deep market knowledge across the entire city and surrounding suburbs. From beachfront properties to vibrant urban neighborhoods, we understand each area's unique characteristics and investment potential."
|
||||||
title: "What areas in Tel-Aviv do you specialize in?",
|
|
||||||
content: "We specialize in all major neighborhoods including Ramat Hasharon, South Tel-Aviv, Herzl Street, and Tel-Aviv Port area. Our team has deep market knowledge across the entire city and surrounding suburbs. From beachfront properties to vibrant urban neighborhoods, we understand each area's unique characteristics and investment potential."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "How long does the buying process typically take?", content: "The average buying process takes 4-8 weeks from offer to closing. This includes property inspection, financing approval, legal review, and final settlement. Rush closings can be arranged for motivated buyers. We guide you through each step to ensure a smooth transaction."
|
||||||
title: "How long does the buying process typically take?",
|
|
||||||
content: "The average buying process takes 4-8 weeks from offer to closing. This includes property inspection, financing approval, legal review, and final settlement. Rush closings can be arranged for motivated buyers. We guide you through each step to ensure a smooth transaction."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "What are the current market trends in Tel-Aviv?", content: "The Tel-Aviv market remains strong with steady appreciation, especially in premium neighborhoods. Average property values have appreciated 5-7% annually. We provide detailed market reports to all clients and keep track of emerging opportunities in high-growth areas."
|
||||||
title: "What are the current market trends in Tel-Aviv?",
|
|
||||||
content: "The Tel-Aviv market remains strong with steady appreciation, especially in premium neighborhoods. Average property values have appreciated 5-7% annually. We provide detailed market reports to all clients and keep track of emerging opportunities in high-growth areas."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Do you handle international buyers and sellers?", content: "Yes, we work extensively with international clients. We can assist with visa requirements, currency exchange, and legal documentation for foreign nationals. Many of our clients are from Europe and North America. We understand the unique needs of international real estate transactions."
|
||||||
title: "Do you handle international buyers and sellers?",
|
|
||||||
content: "Yes, we work extensively with international clients. We can assist with visa requirements, currency exchange, and legal documentation for foreign nationals. Many of our clients are from Europe and North America. We understand the unique needs of international real estate transactions."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "What are your commission rates?", content: "Our standard commission is 1.5% for sellers and varies for buyers. We also offer negotiated rates for investment portfolios. We're transparent about all fees with no hidden charges. Request a personalized quote based on your specific needs."
|
||||||
title: "What are your commission rates?",
|
|
||||||
content: "Our standard commission is 1.5% for sellers and varies for buyers. We also offer negotiated rates for investment portfolios. We're transparent about all fees with no hidden charges. Request a personalized quote based on your specific needs."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "Can you help with property rentals?", content: "While our primary focus is sales, we maintain connections with rental property specialists. We can refer you to trusted partners for short and long-term rental opportunities. Our team can also provide insights on rental market trends for investment decisions."
|
||||||
title: "Can you help with property rentals?",
|
|
||||||
content: "While our primary focus is sales, we maintain connections with rental property specialists. We can refer you to trusted partners for short and long-term rental opportunities. Our team can also provide insights on rental market trends for investment decisions."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "7",
|
id: "7", title: "What is the typical property price range?", content: "Our portfolio ranges from $800,000 entry-level investments to $4,000,000+ luxury penthouses. Properties vary in size from compact 1-bedroom apartments to sprawling 6+ bedroom villas. We cater to all budget ranges and investment strategies."
|
||||||
title: "What is the typical property price range?",
|
|
||||||
content: "Our portfolio ranges from $800,000 entry-level investments to $4,000,000+ luxury penthouses. Properties vary in size from compact 1-bedroom apartments to sprawling 6+ bedroom villas. We cater to all budget ranges and investment strategies."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "8",
|
id: "8", title: "How do I schedule a property viewing?", content: "Schedule a viewing through our contact page or call us directly. We arrange personalized tours at your convenience. Our team can provide detailed information about each property including history, features, and investment potential."
|
||||||
title: "How do I schedule a property viewing?",
|
|
||||||
content: "Schedule a viewing through our contact page or call us directly. We arrange personalized tours at your convenience. Our team can provide detailed information about each property including history, features, and investment potential."
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Comprehensive FAQ section"
|
ariaLabel="Comprehensive FAQ section"
|
||||||
@@ -126,12 +107,10 @@ export default function FaqPage() {
|
|||||||
description="Our expert team is ready to provide personalized guidance for your real estate journey. Whether you're buying, selling, or investing, we're here to help."
|
description="Our expert team is ready to provide personalized guidance for your real estate journey. Whether you're buying, selling, or investing, we're here to help."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule a Consultation",
|
text: "Schedule a Consultation", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Browse Properties",
|
text: "Browse Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
background={{
|
background={{
|
||||||
@@ -146,65 +125,50 @@ export default function FaqPage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "/about"
|
||||||
href: "/about"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Our Team",
|
label: "Our Team", href: "/about"
|
||||||
href: "/about"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Properties",
|
label: "Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Blog",
|
label: "Blog", href: "https://blog.telavivrealty.com"
|
||||||
href: "https://blog.telavivrealty.com"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Buy Property",
|
label: "Buy Property", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Sell Property",
|
label: "Sell Property", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Investment",
|
label: "Investment", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Consultation",
|
label: "Consultation", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"
|
||||||
href: "#"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Terms & Conditions",
|
label: "Terms & Conditions", href: "#"
|
||||||
href: "#"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Careers",
|
label: "Careers", href: "#"
|
||||||
href: "#"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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={{
|
||||||
|
|||||||
220
src/app/page.tsx
220
src/app/page.tsx
@@ -8,10 +8,11 @@ import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
|||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||||
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 TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||||
|
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 } from "lucide-react";
|
import { Home, Users, TrendingUp, Award, Package, Phone, Mail } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
@@ -38,8 +39,7 @@ export default function HomePage() {
|
|||||||
{ name: "FAQ", id: "/faq" }
|
{ name: "FAQ", id: "/faq" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Schedule Viewing",
|
text: "Schedule Viewing", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -55,15 +55,12 @@ export default function HomePage() {
|
|||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Browse Properties",
|
text: "Browse Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Schedule Consultation",
|
text: "Schedule Consultation", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Hero section with Tel-Aviv property showcase"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -79,64 +76,20 @@ export default function HomePage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "prop-1",
|
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"
|
||||||
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",
|
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"
|
||||||
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",
|
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"
|
||||||
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={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View All Properties",
|
text: "View All Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Featured property listings"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<InlineImageSplitTextAbout
|
|
||||||
heading={[
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
content: "20+ Years of Excellence in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text",
|
|
||||||
content: "Tel-Aviv Real Estate"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Learn Our Story",
|
|
||||||
href: "/about"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Meet Our Team",
|
|
||||||
href: "/contact"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
ariaLabel="Company overview and mission"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -151,31 +104,22 @@ export default function HomePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", icon: Home,
|
||||||
icon: Home,
|
title: "Properties Sold", value: "850+"
|
||||||
title: "Properties Sold",
|
|
||||||
value: "850+"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", icon: Users,
|
||||||
icon: Users,
|
title: "Happy Clients", value: "2,400+"
|
||||||
title: "Happy Clients",
|
|
||||||
value: "2,400+"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", icon: TrendingUp,
|
||||||
icon: TrendingUp,
|
title: "Market Growth", value: "35%"
|
||||||
title: "Market Growth",
|
|
||||||
value: "35%"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", icon: Award,
|
||||||
icon: Award,
|
title: "Industry Awards", value: "18"
|
||||||
title: "Industry Awards",
|
|
||||||
value: "18"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Company metrics and achievements"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -189,37 +133,68 @@ export default function HomePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "buying",
|
id: "buying", label: "Buying", title: "Expert Guidance Through Purchase", items: [
|
||||||
label: "Buying",
|
"Property search and viewing coordination", "Market analysis and price negotiation", "Legal documentation and closing support"
|
||||||
title: "Expert Guidance Through Purchase",
|
|
||||||
items: [
|
|
||||||
"Property search and viewing coordination",
|
|
||||||
"Market analysis and price negotiation",
|
|
||||||
"Legal documentation and closing support"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "selling",
|
id: "selling", label: "Selling", title: "Maximize Your Property Value", items: [
|
||||||
label: "Selling",
|
"Professional property valuation", "Marketing and buyer matching", "Fast closing and settlement services"
|
||||||
title: "Maximize Your Property Value",
|
|
||||||
items: [
|
|
||||||
"Professional property valuation",
|
|
||||||
"Marketing and buyer matching",
|
|
||||||
"Fast closing and settlement services"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "investing",
|
id: "investing", label: "Investing", title: "Build Your Real Estate Portfolio", items: [
|
||||||
label: "Investing",
|
"Investment opportunity analysis", "ROI projections and market trends", "Portfolio management and growth strategy"
|
||||||
title: "Build Your Real Estate Portfolio",
|
|
||||||
items: [
|
|
||||||
"Investment opportunity analysis",
|
|
||||||
"ROI projections and market trends",
|
|
||||||
"Portfolio management and growth strategy"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Real estate services overview"
|
/>
|
||||||
|
</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"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</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>
|
</div>
|
||||||
|
|
||||||
@@ -231,19 +206,16 @@ 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."
|
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={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Consultation",
|
text: "Schedule Consultation", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Browse Properties",
|
text: "Browse Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain"
|
variant: "plain"
|
||||||
}}
|
}}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
ariaLabel="Contact and consultation call-to-action"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -251,71 +223,55 @@ export default function HomePage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "/about"
|
||||||
href: "/about"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Our Team",
|
label: "Our Team", href: "/about"
|
||||||
href: "/about"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Properties",
|
label: "Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Blog",
|
label: "Blog", href: "https://blog.telavivrealty.com"
|
||||||
href: "https://blog.telavivrealty.com"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Buy Property",
|
label: "Buy Property", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Sell Property",
|
label: "Sell Property", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Investment",
|
label: "Investment", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Consultation",
|
label: "Consultation", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"
|
||||||
href: "#"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Terms & Conditions",
|
label: "Terms & Conditions", href: "#"
|
||||||
href: "#"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Careers",
|
label: "Careers", href: "#"
|
||||||
href: "#"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 TelAviv Realty | Premium Real Estate in Tel-Aviv"
|
copyrightText="© 2025 TelAviv Realty | Premium Real Estate in Tel-Aviv"
|
||||||
ariaLabel="Website footer with navigation links"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -33,8 +33,7 @@ export default function PropertiesPage() {
|
|||||||
{ name: "FAQ", id: "/faq" }
|
{ name: "FAQ", id: "/faq" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Schedule Viewing",
|
text: "Schedule Viewing", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -50,12 +49,10 @@ export default function PropertiesPage() {
|
|||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Viewing",
|
text: "Schedule Viewing", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Back to Home",
|
text: "Back to Home", href: "/"
|
||||||
href: "/"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Properties page hero section"
|
ariaLabel="Properties page hero section"
|
||||||
@@ -74,58 +71,27 @@ export default function PropertiesPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "prop-1",
|
id: "prop-1", name: "Luxury Penthouse - Ramat Hasharon", price: "$2,500,000", variant: "5 Bedrooms | 300 sqm | City View", imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=3", imageAlt: "Luxury penthouse with panoramic city views"
|
||||||
name: "Luxury Penthouse - Ramat Hasharon",
|
|
||||||
price: "$2,500,000",
|
|
||||||
variant: "5 Bedrooms | 300 sqm | City View",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=3",
|
|
||||||
imageAlt: "Luxury penthouse with panoramic city views"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "prop-2",
|
id: "prop-2", name: "Beachfront Apartment - South Tel-Aviv", price: "$1,800,000", variant: "3 Bedrooms | 180 sqm | Sea View", imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=4", imageAlt: "Modern beachfront apartment with sea view"
|
||||||
name: "Beachfront Apartment - South Tel-Aviv",
|
|
||||||
price: "$1,800,000",
|
|
||||||
variant: "3 Bedrooms | 180 sqm | Sea View",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=4",
|
|
||||||
imageAlt: "Modern beachfront apartment with sea view"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "prop-3",
|
id: "prop-3", name: "Modern Villa - Herzl Street", price: "$3,200,000", variant: "6 Bedrooms | 450 sqm | Garden", imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=2", imageAlt: "Spacious modern villa with private garden"
|
||||||
name: "Modern Villa - Herzl Street",
|
|
||||||
price: "$3,200,000",
|
|
||||||
variant: "6 Bedrooms | 450 sqm | Garden",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=2",
|
|
||||||
imageAlt: "Spacious modern villa with private garden"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "prop-4",
|
id: "prop-4", name: "Contemporary Apartment - Florentin", price: "$1,200,000", variant: "2 Bedrooms | 110 sqm | Trendy Area", imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=5", imageAlt: "Contemporary apartment in vibrant neighborhood"
|
||||||
name: "Contemporary Apartment - Florentin",
|
|
||||||
price: "$1,200,000",
|
|
||||||
variant: "2 Bedrooms | 110 sqm | Trendy Area",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=5",
|
|
||||||
imageAlt: "Contemporary apartment in vibrant neighborhood"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "prop-5",
|
id: "prop-5", name: "Executive Suite - Tel-Aviv Port", price: "$2,100,000", variant: "4 Bedrooms | 220 sqm | Marina View", imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=3", imageAlt: "Executive apartment with marina views"
|
||||||
name: "Executive Suite - Tel-Aviv Port",
|
|
||||||
price: "$2,100,000",
|
|
||||||
variant: "4 Bedrooms | 220 sqm | Marina View",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/summer-beautiful-island-village-cyclades_1203-4549.jpg?_wi=3",
|
|
||||||
imageAlt: "Executive apartment with marina views"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "prop-6",
|
id: "prop-6", name: "Investment Property - King George", price: "$950,000", variant: "1 Bedroom | 75 sqm | High ROI", imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=6", imageAlt: "Compact investment property in central location"
|
||||||
name: "Investment Property - King George",
|
|
||||||
price: "$950,000",
|
|
||||||
variant: "1 Bedroom | 75 sqm | High ROI",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/relax-sofa-window_1150-12924.jpg?_wi=6",
|
|
||||||
imageAlt: "Compact investment property in central location"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Contact for Details",
|
text: "Contact for Details", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
ariaLabel="Complete property listing"
|
ariaLabel="Complete property listing"
|
||||||
@@ -136,65 +102,50 @@ export default function PropertiesPage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "/about"
|
||||||
href: "/about"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Our Team",
|
label: "Our Team", href: "/about"
|
||||||
href: "/about"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Properties",
|
label: "Properties", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Blog",
|
label: "Blog", href: "https://blog.telavivrealty.com"
|
||||||
href: "https://blog.telavivrealty.com"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Buy Property",
|
label: "Buy Property", href: "/properties"
|
||||||
href: "/properties"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Sell Property",
|
label: "Sell Property", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Investment",
|
label: "Investment", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Consultation",
|
label: "Consultation", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"
|
||||||
href: "#"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Terms & Conditions",
|
label: "Terms & Conditions", href: "#"
|
||||||
href: "#"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"
|
||||||
href: "/contact"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Careers",
|
label: "Careers", href: "#"
|
||||||
href: "#"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user