import { ProductCard } from "./product-card" import { Product } from "@/types/product" interface ProductGridProps { products: Product[] } export function ProductGrid({ products }: ProductGridProps) { return (