import { CreditCard, Headphones, ShieldCheck, Truck } from "lucide-react"; const benefits = [ { icon: Truck, title: "Envíos nacionales", text: "Coordinación rápida y segura." }, { icon: CreditCard, title: "Pagos flexibles", text: "Opciones adaptadas a tu compra." }, { icon: ShieldCheck, title: "Compra protegida", text: "Confirmamos antes de pagar." }, { icon: Headphones, title: "Atención cercana", text: "Acompañamiento por WhatsApp." }, ]; export function TrustBar() { return
{benefits.map(({ icon: Icon, title, text }, index) =>
{title}{text}
)}
; }