// src/components/ui/ProductCard.tsx import Image from "next/image"; import Link from "next/link"; import { Plus } from "lucide-react"; interface ProductCardProps { id: string; title: string; category: string; price: number; imageUrl: string; index?: number; // Para escalonar animaciones si queremos } export default function ProductCard({ id, title, category, price, imageUrl, index = 1 }: ProductCardProps) { return ( {/* Contenedor de Imagen (Gris pálido, bordes muy redondos) */}
{category}