Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-13 11:46:23 +00:00
parent 57bd0aa187
commit 2288b9cae0

View File

@@ -92,7 +92,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Shop", id: "/shop" },
{ name: "Donate", id: "/donate" },
{ name: "Blog", id: "/blog" }
].map(item => ({...item, id: item.id.startsWith('/') ? item.id : `#${item.id}`})),
],
brandName: "Hope Haven", className: "py-4", button: { text: "Cart", onClick: () => setCartOpen(true) }
};
@@ -103,7 +103,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "/adopt" }, { label: "Volunteer", href: "/contact" }, { label: "Foster a Pet", href: "/contact" }] },
{ title: "Resources", items: [{ label: "FAQs", href: "/faq" }, { label: "Pet Care Tips", href: "/blog" }, { label: "Contact Us", href: "/contact" }] }
],
logoText: "Hope Haven", copyrightText: "© 2024 Hope Haven Animal Shelter. All rights reserved.", useInvertedBackground: false
logoText: "Hope Haven", copyrightText: "© 2024 Hope Haven Animal Shelter. All rights reserved."
};
if (isLoading) {