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 (