diff --git a/package.json b/package.json index b0341f6..5bd9282 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,9 @@ "name": "surtilatino-frontend-page", "version": "0.1.0", "private": true, + "engines": { + "node": ">=20.9.0" + }, "scripts": { "dev": "next dev", "build": "next build", diff --git a/src/components/shop/CatalogBrowser.tsx b/src/components/shop/CatalogBrowser.tsx index 7949b94..67127ec 100644 --- a/src/components/shop/CatalogBrowser.tsx +++ b/src/components/shop/CatalogBrowser.tsx @@ -8,6 +8,7 @@ import { cn } from "@/lib/utils"; interface CatalogBrowserProps { initialProducts: Product[]; + categories: Category[]; }