diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index cacb408..61ec119 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -66,6 +66,15 @@ export default function ProductPage({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Menu", id: "/menu" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "Contact", id: "/contact" }, + { name: "Shop", id: "/shop" } + ]; + if (isLoading) { return ( -