Update src/app/shop/[id]/page.tsx
This commit is contained in:
@@ -95,8 +95,9 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/#about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Shop", id: "/shop" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Team", id: "/#team" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Contact", id: "/#contact" },
|
{ name: "Contact", id: "/#contact" }
|
||||||
]}
|
]}
|
||||||
brandName="Angola"
|
brandName="Angola"
|
||||||
bottomLeftText="Experience the Beauty"
|
bottomLeftText="Experience the Beauty"
|
||||||
@@ -135,8 +136,9 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/#about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Shop", id: "/shop" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Team", id: "/#team" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Contact", id: "/#contact" },
|
{ name: "Contact", id: "/#contact" }
|
||||||
]}
|
]}
|
||||||
brandName="Angola"
|
brandName="Angola"
|
||||||
bottomLeftText="Experience the Beauty"
|
bottomLeftText="Experience the Beauty"
|
||||||
@@ -182,8 +184,9 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "/#about" },
|
{ name: "About", id: "/#about" },
|
||||||
{ name: "Shop", id: "/shop" },
|
{ name: "Shop", id: "/shop" },
|
||||||
|
{ name: "Team", id: "/#team" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "Contact", id: "/#contact" },
|
{ name: "Contact", id: "/#contact" }
|
||||||
]}
|
]}
|
||||||
brandName="Angola"
|
brandName="Angola"
|
||||||
bottomLeftText="Experience the Beauty"
|
bottomLeftText="Experience the Beauty"
|
||||||
@@ -209,7 +212,7 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
sku={meta.sku}
|
sku={meta.sku}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Add To Cart", onClick: handleAddToCart },
|
{ text: "Add To Cart", onClick: handleAddToCart },
|
||||||
{ text: "Buy Now", onClick: handleBuyNow },
|
{ text: "Buy Now", onClick: handleBuyNow }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -223,8 +226,8 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
total={`$${cartTotal}`}
|
total={`$${cartTotal}`}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
|
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user