diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 4c5e240..99aceb8 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -74,7 +74,7 @@ function ProductPageContent({ params }: ProductPageProps) { 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 ( @@ -107,9 +107,9 @@ function ProductPageContent({ params }: ProductPageProps) {