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

This commit is contained in:
2026-02-19 11:18:40 +00:00
parent 851e32029b
commit dac537d0d4

View File

@@ -85,11 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/adopt" },
{ name: "About", id: "/about" },
{ name: "Impact", id: "/impact" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Impact", id: "/#impact" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Shop", id: "/shop" }
]}
brandName="Pawsome Shelter"
@@ -105,9 +105,9 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "About Us", items: [{ label: "Our Mission", href: "#about" }, { label: "Success Stories", href: "#testimonials" }] },
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "#adopt" }, { label: "Donate", href: "#contact" }, { label: "Volunteer", href: "#contact" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact Us", href: "#contact" }] }
{ title: "About Us", items: [{ label: "Our Mission", href: "/#about" }, { label: "Success Stories", href: "/#testimonials" }] },
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "/#adopt" }, { label: "Donate", href: "/#contact" }, { label: "Volunteer", href: "/#contact" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact Us", href: "/#contact" }] }
]}
copyrightText="© 2024 Pawsome Shelter. All rights reserved."
onPrivacyClick={() => console.log('Privacy Policy clicked')}
@@ -137,11 +137,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/adopt" },
{ name: "About", id: "/about" },
{ name: "Impact", id: "/impact" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Impact", id: "/#impact" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Shop", id: "/shop" }
]}
brandName="Pawsome Shelter"
@@ -165,9 +165,9 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "About Us", items: [{ label: "Our Mission", href: "#about" }, { label: "Success Stories", href: "#testimonials" }] },
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "#adopt" }, { label: "Donate", href: "#contact" }, { label: "Volunteer", href: "#contact" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact Us", href: "#contact" }] }
{ title: "About Us", items: [{ label: "Our Mission", href: "/#about" }, { label: "Success Stories", href: "/#testimonials" }] },
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "/#adopt" }, { label: "Donate", href: "/#contact" }, { label: "Volunteer", href: "/#contact" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact Us", href: "/#contact" }] }
]}
copyrightText="© 2024 Pawsome Shelter. All rights reserved."
onPrivacyClick={() => console.log('Privacy Policy clicked')}
@@ -198,11 +198,11 @@ export default function ProductPage({ params }: ProductPageProps) {
logoHref="/"
navItems={[
{ name: "Home", id: "/" },
{ name: "Adopt", id: "/adopt" },
{ name: "About", id: "/about" },
{ name: "Impact", id: "/impact" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
{ name: "Adopt", id: "/#adopt" },
{ name: "About", id: "/#about" },
{ name: "Impact", id: "/#impact" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -247,9 +247,9 @@ export default function ProductPage({ params }: ProductPageProps) {
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "About Us", items: [{ label: "Our Mission", href: "#about" }, { label: "Success Stories", href: "#testimonials" }] },
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "#adopt" }, { label: "Donate", href: "#contact" }, { label: "Volunteer", href: "#contact" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact Us", href: "#contact" }] }
{ title: "About Us", items: [{ label: "Our Mission", href: "/#about" }, { label: "Success Stories", href: "/#testimonials" }] },
{ title: "Get Involved", items: [{ label: "Adopt a Pet", href: "/#adopt" }, { label: "Donate", href: "/#contact" }, { label: "Volunteer", href: "/#contact" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact Us", href: "/#contact" }] }
]}
copyrightText="© 2024 Pawsome Shelter. All rights reserved."
onPrivacyClick={() => console.log('Privacy Policy clicked')}