"use client"; import Link from "next/link"; export type Product = { id: string; name: string; price: string; image: string; }; export default function ProductGrid({ products }: { products: Product[] }) { return (
{products.map((p) => (
{p.name}
{p.name}
{p.price}
Add to cart
))}
); }