20 lines
602 B
TypeScript
20 lines
602 B
TypeScript
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 (
|
|
<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>
|
|
);
|
|
}
|