diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index e76be55..7bbdead 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,12 +1,12 @@ "use client"; import { Suspense } from "react"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import Link from 'next/link'; function ShopPageContent() { const { @@ -19,6 +19,48 @@ function ShopPageContent() { if (isLoading) { return ( + <> + +
+

Loading products...

+
+ + ); + } + + return ( + <> + +
+ +
+ + ); +} + +export default function ShopPage() { + return ( + - - -
-

Loading products...

-
- -
-
- ); - } - - return ( - - - -
- -
+ -
-
- ); -} - -export default function ShopPage() { - return ( - - + ); }