Update src/app/pets/page.tsx

This commit is contained in:
2026-03-03 14:08:56 +00:00
parent 33cb653d52
commit e1c98b0033

View File

@@ -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() {
<NavbarStyleApple
brandName="Paws Haven"
navItems={[
{ name: "About", id: "about" },
{ name: "Pets", id: "pets" },
{ name: "Adopt", id: "adopt" },
{ name: "Get Involved", id: "involved" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pets", id: "/pets" },
{ name: "Adopt", id: "#adopt" },
{ name: "Get Involved", id: "#involved" },
{ name: "Contact", id: "#contact" }
]}
/>
</div>
@@ -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" }
]
}
]}