Files
website/components/TrustIndicators.tsx

29 lines
1.4 KiB
TypeScript
Raw Normal View History

'use client'
import { Award, Wrench, ShieldCheck } from 'lucide-react'
export default function TrustIndicators() {
return (
<section className="py-16 md:py-20 bg-white">
<div className="container mx-auto px-4">
<div className="grid grid-cols-2 md:grid-cols-3 gap-8 md:gap-10 max-w-4xl mx-auto">
<div className="flex flex-col items-center text-center">
<Award className="w-12 h-12 text-harbor-gold mb-4" />
<span className="text-3xl md:text-4xl font-bold text-harbor-blue">20+</span>
<span className="text-sm md:text-base text-gray-600 mt-1">Years Experience</span>
</div>
<div className="flex flex-col items-center text-center">
<Wrench className="w-12 h-12 text-harbor-gold mb-4" />
<span className="text-3xl md:text-4xl font-bold text-harbor-blue">100%</span>
<span className="text-sm md:text-base text-gray-600 mt-1">Customizable Service</span>
</div>
<div className="flex flex-col items-center text-center col-span-2 md:col-span-1">
<ShieldCheck className="w-12 h-12 text-harbor-gold mb-4" />
<span className="text-3xl md:text-4xl font-bold text-harbor-blue">100%</span>
<span className="text-sm md:text-base text-gray-600 mt-1">Certified Experts</span>
</div>
</div>
</div>
</section>
)
}