From e8ec252371eef60efb0239df1ad34e2dc182b37a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Feb 2026 22:33:26 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 72 +++++++++++++++++++++++++++---------------- 1 file changed, 46 insertions(+), 26 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 4c894d5..6612c4b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -3,12 +3,12 @@ import { Suspense, useCallback } from "react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductCatalog } from "@/hooks/useProductCatalog"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; // Updated import function ShopPageContent() { const { @@ -46,14 +46,14 @@ function ShopPageContent() { if (isLoading) { return ( @@ -78,13 +78,23 @@ function ShopPageContent() { @@ -93,14 +103,14 @@ function ShopPageContent() { return ( @@ -146,13 +156,23 @@ function ShopPageContent() { /> @@ -165,4 +185,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +}