diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index a20fdb6..020e1ba 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,6 +1,5 @@ "use client"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -56,49 +55,47 @@ export default function ShopPage() { secondaryButtonStyle="solid" headingFontWeight="extrabold" > - - -
-

Loading products...

-
- -
+ +
+

Loading products...

+
+ ); } @@ -116,72 +113,70 @@ export default function ShopPage() { secondaryButtonStyle="solid" headingFontWeight="extrabold" > - - -
- -
-
- 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, + }, + ]} + /> +
+ ); }