diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fac6453..c7bbf1c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,7 +5,6 @@ import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarS import ContactCTA from "@/components/sections/contact/ContactCTA"; import MediaAbout from "@/components/sections/about/MediaAbout"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import Link from "next/link"; import { MessageCircle, Award } from "lucide-react"; export default function ContactPage() { @@ -19,17 +18,15 @@ export default function ContactPage() { const footerColumns = [ { - title: "Navigate", - items: [ - { label: "Properties", href: "/properties" }, - { label: "About Us", href: "/about" }, - { label: "Our Team", href: "/about" }, - { label: "Contact", href: "/contact" }, + title: "Navigate", items: [ + { label: "Properties", href: "properties" }, + { label: "About Us", href: "about" }, + { label: "Our Team", href: "team" }, + { label: "Contact", href: "contact" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Property Sales", href: "#" }, { label: "Investment Consultation", href: "#" }, { label: "Market Analysis", href: "#" }, @@ -37,8 +34,7 @@ export default function ContactPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Disclaimer", href: "#" }, @@ -46,8 +42,7 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "+1 (310) 555-0123", href: "#" }, { label: "hello@prestigerealestate.com", href: "#" }, { label: "Beverly Hills, CA", href: "#" }, @@ -71,7 +66,7 @@ export default function ContactPage() {
@@ -83,10 +78,10 @@ export default function ContactPage() { tag="Contact Prestige" tagIcon={Award} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/business-team-three-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-copy-space-business-meeting-concept_74855-11552.jpg?_wi=3" + imageSrc="http://img.b2bpic.net/free-photo/business-team-three-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-copy-space-business-meeting-concept_74855-11552.jpg" imageAlt="Our professional team" useInvertedBackground={true} - buttons={[{ text: "Schedule Meeting", href: "/contact" }]} + buttons={[{ text: "Schedule Meeting", href: "contact" }]} buttonAnimation="slide-up" /> @@ -101,8 +96,8 @@ export default function ContactPage() { background={{ variant: "plain" }} useInvertedBackground={false} buttons={[ - { text: "Schedule Consultation", href: "/contact" }, - { text: "Browse Properties", href: "/properties" }, + { text: "Schedule Consultation", href: "contact" }, + { text: "Browse Properties", href: "properties" }, ]} buttonAnimation="slide-up" />