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