diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b387310..c8d298b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -39,7 +39,7 @@ function ShopPageContent() { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); - const navItems = [{"name":"Home","id":"/"},{"name":"About Us","id":"about"},{"name":"Menu","id":"products"},{"name":"Testimonials","id":"testimonials"},{"name":"FAQ","id":"faq"},{"name":"Contact","id":"contact"},{"name":"Shop","id":"/shop"}].filter(item => item.id.startsWith('/')); + const navItems = [{"name":"Home","id":"/"},{"name":"About Us","id":"/#about"},{"name":"Menu","id":"/#products"},{"name":"Testimonials","id":"/#testimonials"},{"name":"FAQ","id":"/#faq"},{"name":"Contact","id":"/#contact"},{"name":"Shop","id":"/shop"}].filter(item => item.id.startsWith('/')); if (isLoading) { return ( @@ -72,9 +72,9 @@ function ShopPageContent() {