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) => ( + + ))} +
+ +
+ ); +}