diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b5caa6b..908aaa0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,7 +3,6 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; @@ -13,29 +12,25 @@ export default function ContactPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, + { name: "Services", id: "services" }, { name: "Team", id: "team" }, { name: "Contact", id: "contact" }, ]; const navButton = { - text: "Schedule Viewing", - href: "/contact", - }; + text: "Schedule Viewing", href: "/contact"}; const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Properties", href: "/properties" }, - { label: "About Us", href: "/about" }, - { label: "Team", href: "/team" }, + { label: "Services", href: "/" }, + { label: "Team", href: "/" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Buy Properties", href: "/" }, { label: "Sell Property", href: "/" }, { label: "Investment Analysis", href: "/" }, @@ -43,17 +38,15 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ - { label: "About Luxe", href: "/about" }, - { label: "Our Team", href: "/team" }, + title: "Company", items: [ + { label: "About Luxe", href: "/" }, + { label: "Our Team", href: "/" }, { label: "Careers", href: "/" }, { label: "News", href: "/" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Disclaimers", href: "/" }, @@ -83,22 +76,6 @@ export default function ContactPage() { /> -