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() {