20 lines
606 B
TypeScript
20 lines
606 B
TypeScript
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 (
|
|
<div className="trust-bar">
|
|
{trustItems.map((item, index) => (
|
|
<div key={index} className="trust-item">
|
|
<span className="trust-icon">{item.icon}</span> {item.text}
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|