From 4033f609dffc5c29aeb1b300b0a855d7ff9e99eb Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 14:11:28 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ca78a38..47786ff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; From 967cc02175f33396f2b465e69853ab08a0f395d1 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 14:11:29 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 52 +++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 17 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index f315198..38386a4 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -84,13 +84,12 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -119,13 +118,12 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -161,14 +159,13 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -188,7 +185,7 @@ export default function ProductPage({ params }: ProductPageProps) { sku={meta.sku} buttons={[ { text: "Add To Cart", onClick: handleAddToCart }, - { text: "Buy Now", onClick: handleBuyNow }, + { text: "Buy Now", onClick: handleBuyNow } ]} />
@@ -202,18 +199,39 @@ export default function ProductPage({ params }: ProductPageProps) { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout + } ]} /> From 48ed71d7c8bfb75c8a07c38a58d86dcef30d267f Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 14:11:30 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 45 ++++++++++++++++++++++++++++++------------- 1 file changed, 32 insertions(+), 13 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 3a5e176..06477b3 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -55,13 +55,12 @@ export default function ShopPage() {
@@ -89,14 +88,13 @@ export default function ShopPage() {
@@ -120,18 +118,39 @@ export default function ShopPage() { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout + } ]} />