import type { Product } from "@/lib/products/types" import { ProductCard } from "./product-card" interface ProductGridProps { products: Product[] } export function ProductGrid({ products }: ProductGridProps) { if (products.length === 0) { return (
No products found.