From 9e496d17c55d3900df063062e20a5ca167afc5f0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Feb 2026 12:34:15 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 45 ++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 24 deletions(-) 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 ( -