diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 4978c28..0c71013 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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; @@ -54,82 +53,80 @@ function ShopPageContent() { secondaryButtonStyle="layered" headingFontWeight="extrabold" > - - - - {isLoading ? ( -
-

Loading products...

-
- ) : ( -
- -
- )} - -
- setCartOpen(false)} - items={cartItems} - onQuantityChange={updateQuantity} - onRemove={removeItem} - total={`$${cartTotal}`} - buttons={[ - { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, - ]} + + + {isLoading ? ( +
+

Loading products...

+
+ ) : ( +
+
+ )} + +
+ setCartOpen(false)} + items={cartItems} + onQuantityChange={updateQuantity} + onRemove={removeItem} + total={`$${cartTotal}`} + buttons={[ + { + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, + }, + ]} + /> +
- - + ]} + logoText="2 Dogs Pub" + copyrightText="© 2024 2 Dogs Pub. All rights reserved." + className="bg-background-accent text-foreground pt-16 md:pt-24" + mediaWrapperClassName="h-64 md:h-96 w-full" + logoTextClassName="text-4xl font-extrabold" + columnTitleClassName="text-xl font-bold mb-4 text-primary-cta" + columnItemClassName="text-lg mb-2" + /> +
); }