From aa16e105fb104de70638653ad676b2ac7d9421be Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:49:46 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 101 ++++++++++++----------------------------- 1 file changed, 29 insertions(+), 72 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f232fb5..9e85140 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,35 +11,32 @@ import { Home, Users, TrendingUp, Award } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "FAQ", id: "faq" }, + { name: "Home", id: "/" }, + { name: "Properties", id: "/properties" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "FAQ", id: "/faq" }, ]; const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, - { label: "Properties", href: "/" }, + { label: "Properties", href: "/properties" }, { label: "Blog", href: "https://blog.telavivrealty.com" }, ], }, { - title: "Services", - items: [ - { label: "Buy Property", href: "/" }, + title: "Services", items: [ + { label: "Buy Property", href: "/properties" }, { label: "Sell Property", href: "/contact" }, { label: "Investment", href: "/contact" }, { label: "Consultation", href: "/contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Contact", href: "/contact" }, @@ -66,9 +63,7 @@ export default function AboutPage() { brandName="TelAviv Realty" navItems={navItems} button={{ - text: "Schedule Viewing", - href: "/contact", - }} + text: "Schedule Viewing", href: "/contact"}} /> @@ -76,24 +71,16 @@ export default function AboutPage() { @@ -103,29 +90,17 @@ export default function AboutPage() { Date: Mon, 9 Mar 2026 20:49:46 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 80 +++++++++++++--------------------------- 1 file changed, 26 insertions(+), 54 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index cbeba35..364328f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -10,35 +10,32 @@ import { Phone } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "FAQ", id: "faq" }, + { name: "Home", id: "/" }, + { name: "Properties", id: "/properties" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "FAQ", id: "/faq" }, ]; const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, - { label: "Properties", href: "/" }, + { label: "Properties", href: "/properties" }, { label: "Blog", href: "https://blog.telavivrealty.com" }, ], }, { - title: "Services", - items: [ - { label: "Buy Property", href: "/" }, + title: "Services", items: [ + { label: "Buy Property", href: "/properties" }, { label: "Sell Property", href: "/contact" }, { label: "Investment", href: "/contact" }, { label: "Consultation", href: "/contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Contact", href: "/contact" }, @@ -65,9 +62,7 @@ export default function ContactPage() { brandName="TelAviv Realty" navItems={navItems} button={{ - text: "Schedule Viewing", - href: "/contact", - }} + text: "Schedule Viewing", href: "/contact"}} /> @@ -79,17 +74,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." buttons={[ { - text: "Schedule Consultation", - href: "/contact", - }, + text: "Schedule Consultation", href: "/contact"}, { - text: "Browse Properties", - href: "/", - }, + text: "Browse Properties", href: "/properties"}, ]} background={{ - variant: "plain", - }} + variant: "plain"}} useInvertedBackground={false} ariaLabel="Contact and consultation call-to-action" /> @@ -99,41 +89,23 @@ export default function ContactPage() {