"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 (