diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c6c9a9c..c8fdfe4 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,5 +1,6 @@ "use client"; +import Link from "next/link"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -73,8 +74,7 @@ export default function ContactPage() { logoText="DISTRICT" columns={[ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "New Arrivals", href: "/shop/new" }, { label: "Collections", href: "/collections" }, { label: "Sale", href: "/sale" }, @@ -82,8 +82,7 @@ export default function ContactPage() { ] }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Careers", href: "/careers" }, { label: "Press", href: "/press" }, @@ -91,8 +90,7 @@ export default function ContactPage() { ] }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "/shipping" }, { label: "Returns", href: "/returns" }, @@ -100,8 +98,7 @@ export default function ContactPage() { ] }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Cookie Policy", href: "/cookies" },