diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 6a27ba6..3d27110 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -13,108 +13,58 @@ function ShopPageContent() { isLoading, search, setSearch, + category, + setCategory, + sort, + setSort, filters, - cartOpen, - setCartOpen, - } = useProductCatalog({ basePath: "/shop" }); + categories, + } = useProductCatalog(); - if (isLoading) { - return ( - - - -
-

Loading products...

-
-
-
- ); - } + const navItems = [ + { name: "Home", id: "/" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, + ]; return ( - - -
- -
-
+ + Loading products...}> + +
); } export default function ShopPage() { return ( - + - + ); -} \ No newline at end of file +}