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
+}