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