From e1c98b003362a966ccf69d1e8173d8dbd7e2a0af Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:08:56 +0000 Subject: [PATCH] Update src/app/pets/page.tsx --- src/app/pets/page.tsx | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/src/app/pets/page.tsx b/src/app/pets/page.tsx index d2072b8..b21c785 100644 --- a/src/app/pets/page.tsx +++ b/src/app/pets/page.tsx @@ -1,12 +1,12 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Heart, Mail, Sparkles, MapPin, Calendar, Users } from 'lucide-react'; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Heart, Mail, Sparkles } from "lucide-react"; export default function PetsPage() { return ( @@ -26,11 +26,12 @@ export default function PetsPage() { @@ -122,23 +123,23 @@ export default function PetsPage() { columns={[ { title: "About", items: [ - { label: "Our Mission", href: "about" }, + { label: "Our Mission", href: "/about" }, { label: "Our Team", href: "#" }, - { label: "Meet Our Pets", href: "pets" } + { label: "Meet Our Pets", href: "/pets" } ] }, { title: "Get Involved", items: [ - { label: "Adopt a Pet", href: "adopt" }, - { label: "Volunteer", href: "involved" }, + { label: "Adopt a Pet", href: "#adopt" }, + { label: "Volunteer", href: "#involved" }, { label: "Donate", href: "#" } ] }, { title: "Resources", items: [ { label: "Pet Care Tips", href: "#" }, - { label: "FAQ", href: "faq" }, - { label: "Contact Us", href: "contact" } + { label: "FAQ", href: "#faq" }, + { label: "Contact Us", href: "#contact" } ] } ]}