Update src/app/contact/page.tsx

This commit is contained in:
2026-03-04 13:41:02 +00:00
parent 8e07cef4fc
commit d08568ee16

View File

@@ -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: "#" },
],
},