From 927cae704229f03c2d0dd653fe4cce0a492c38aa Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 15:27:17 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b50e44b..3be63b4 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -6,6 +6,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import { useProductCatalog } from "@/hooks/useProductCatalog"; +import { useState } from "react"; export default function ShopPage() { const { @@ -15,6 +16,8 @@ export default function ShopPage() { setSearch, filters, } = useProductCatalog({ basePath: "/shop" }); + + const [cartOpen, setCartOpen] = useState(false); if (isLoading) { return (