export default function TrustBar() { const trustItems = [ { icon: '🚚', text: 'Scheduled job site delivery' }, { icon: '📐', text: '2D fence drawing services' }, { icon: '🏗️', text: 'Contractor accounts available' }, { icon: '📍', text: 'Serving 250km across Ontario' }, { icon: '⭐', text: "KWC's B2B fence partner" }, ]; return (
{trustItems.map((item, index) => (
{item.icon} {item.text}
))}
); }