diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index abe54f5..11f1b3c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -51,6 +51,15 @@ function ProductPageContent({ params }: ProductPageProps) { const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Fence Types", id: "/#services" }, + { name: "Gallery", id: "/#gallery" }, + { name: "Reviews", id: "/#reviews" }, + { name: "FAQs", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + ]; + const handleAddToCart = useCallback(() => { const item = createCartItem(); if (item) { @@ -88,11 +97,10 @@ function ProductPageContent({ params }: ProductPageProps) { headingFontWeight="extrabold" > -