From bbc4ea9cf7df10d9102627dadfbfc5eb5ae368d4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 11:20:51 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 732bd32..cdc24f8 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -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() { ); -} \ No newline at end of file +}