Update src/app/shop/page.tsx

This commit is contained in:
2026-02-16 11:20:51 +00:00
parent 473831baec
commit bbc4ea9cf7

View File

@@ -55,16 +55,16 @@ export default function ShopPage() {
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "#hero" },
{ label: "Available Pets", href: "#products" },
{ label: "Adoption Process", href: "#features" },
{ label: "About", href: "#about" }
{ label: "Home", href: "/" },
{ label: "Available Pets", href: "products" },
{ label: "Adoption Process", href: "features" },
{ label: "About", href: "about" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "contact" },
{ label: "Volunteer", href: "#" },
{ label: "Donate", href: "#" }
]
@@ -129,16 +129,16 @@ export default function ShopPage() {
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "#hero" },
{ label: "Available Pets", href: "#products" },
{ label: "Adoption Process", href: "#features" },
{ label: "About", href: "#about" }
{ label: "Home", href: "/" },
{ label: "Available Pets", href: "products" },
{ label: "Adoption Process", href: "features" },
{ label: "About", href: "about" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "contact" },
{ label: "Volunteer", href: "#" },
{ label: "Donate", href: "#" }
]
@@ -158,4 +158,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}