From c64dd706b8b751645459bc678ca72e96e932eb0a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 11:41:44 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 75 ++++++++++++++++++++----------------------- 1 file changed, 35 insertions(+), 40 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 1114d1c..e2af18a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,7 +1,6 @@ "use client"; import { Suspense, useCallback } from "react"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; @@ -68,14 +67,12 @@ function ShopPageContent() { secondaryButtonStyle="layered" headingFontWeight="light" > - - -
-

Loading products...

-
-
+ +
+

Loading products...

+
); } @@ -93,37 +90,35 @@ function ShopPageContent() { secondaryButtonStyle="layered" headingFontWeight="light" > - - -
- -
-
- setCartOpen(false)} - items={cartItems} - onQuantityChange={updateQuantity} - onRemove={removeItem} - total={`$${cartTotal}`} - buttons={[ - { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, - ]} - /> -
-
+ +
+ +
+
+ setCartOpen(false)} + items={cartItems} + onQuantityChange={updateQuantity} + onRemove={removeItem} + total={`$${cartTotal}`} + buttons={[ + { + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, + }, + ]} + /> +
); }