From 5de1ab65fdc797d7e910f970864c7a964e6ccb46 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:27:52 +0000 Subject: [PATCH] Update components/product-grid.tsx --- components/product-grid.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 components/product-grid.tsx diff --git a/components/product-grid.tsx b/components/product-grid.tsx new file mode 100644 index 0000000..d085955 --- /dev/null +++ b/components/product-grid.tsx @@ -0,0 +1,21 @@ +import { Container } from "@/components/container"; +import { products } from "@/lib/products"; +import { ProductCard } from "./product-card"; + +export function ProductGrid({ title }: { title: string }) { + return ( +
+ +
+

{title}

+
+
+
+ {products.map((product) => ( + + ))} +
+ +
+ ); +}