import { ShieldCheck, Clock, CalendarCheck, Headphones } from 'lucide-react' const badges = [ { icon: ShieldCheck, text: 'Secure Payment' }, { icon: Clock, text: '7-Day Delivery' }, { icon: CalendarCheck, text: 'Cancel Anytime' }, { icon: Headphones, text: '24/7 Support' }, ] export function TrustBadges() { return (
{badges.map((badge, index) => (
{badge.text}
))}
) }