diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b660b20..0014d83 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -3,90 +3,14 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; +import AboutMetric from '@/components/sections/about/AboutMetric'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { useProductCatalog } from "@/hooks/useProductCatalog"; +import { ShoppingBag, Star, Truck, Heart } from 'lucide-react'; import { useState } from "react"; export default function ShopPage() { - const { - products, - isLoading, - search, - setSearch, - filters, - } = useProductCatalog({ basePath: "/shop" }); - const [cartOpen, setCartOpen] = useState(false); - if (isLoading) { - return ( - - - -
-

Loading products...

-
- -
-
- ); - } - return (
-