From d08568ee161f846165aac4b40004ede86752cc0a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 13:41:02 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 22c885f..d5fc264 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,7 +5,7 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin import ContactCTA from "@/components/sections/contact/ContactCTA"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Heart, Mail, MapPin, Phone } from "lucide-react"; +import { Heart } from "lucide-react"; export default function ContactPage() { return ( @@ -32,6 +32,8 @@ export default function ContactPage() { { name: "FAQ", id: "faq" }, { name: "Contact", id: "/contact" }, { name: "Our Pets", id: "/our-pets" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms", id: "/terms" }, ]} button={{ text: "Adopt Now", href: "#featured-pets" }} /> @@ -99,8 +101,8 @@ export default function ContactPage() { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms of Service", href: "/terms" }, { label: "Adoption Policy", href: "#" }, ], },