diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index b829622..96a4f13 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -95,8 +95,9 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Shop", id: "/shop" }, + { name: "Team", id: "/#team" }, { name: "Testimonials", id: "/#testimonials" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]} brandName="Angola" bottomLeftText="Experience the Beauty" @@ -135,8 +136,9 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Shop", id: "/shop" }, + { name: "Team", id: "/#team" }, { name: "Testimonials", id: "/#testimonials" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]} brandName="Angola" bottomLeftText="Experience the Beauty" @@ -182,8 +184,9 @@ function ProductPageContent({ params }: ProductPageProps) { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Shop", id: "/shop" }, + { name: "Team", id: "/#team" }, { name: "Testimonials", id: "/#testimonials" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/#contact" } ]} brandName="Angola" bottomLeftText="Experience the Beauty" @@ -209,7 +212,7 @@ function ProductPageContent({ params }: ProductPageProps) { sku={meta.sku} buttons={[ { text: "Add To Cart", onClick: handleAddToCart }, - { text: "Buy Now", onClick: handleBuyNow }, + { text: "Buy Now", onClick: handleBuyNow } ]} /> @@ -223,8 +226,8 @@ function ProductPageContent({ params }: ProductPageProps) { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout + } ]} />