From 6984a4a0295da16993528d0ed93a22d032469317 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:29:07 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 50 ++++++++++++++---------------------------- 1 file changed, 16 insertions(+), 34 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 72f1c6b..a9cdcf2 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,9 +7,16 @@ import TextAbout from '@/components/sections/about/TextAbout'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import { Star, Zap, Mail } from 'lucide-react'; -import Link from 'next/link'; export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Properties", id: "/properties" }, + { name: "How It Works", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, + ]; + return (