diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 20a7f02..70a9110 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,135 +1,127 @@ "use client"; -import { Suspense } from "react"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Instagram, Phone, Mail } from 'lucide-react'; -import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; -import { useProductCatalog } from "@/hooks/useProductCatalog"; -import { useState } from "react"; - -function ShopPageContent() { - const { - products, - isLoading, - search, - setSearch, - filters, - } = useProductCatalog({ basePath: "/shop" }); - - const [cartOpen, setCartOpen] = useState(false); - - if (isLoading) { - return ( - - - -
-

Loading products...

-
- -
-
- ); - } - - return ( - - - -
- -
- -
-
- ); -} +import { Instagram, Phone, Mail, Package, Zap, Filter } from "lucide-react"; export default function ShopPage() { - return ( - - - - ); + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); } \ No newline at end of file