type Props = { license?: string; years?: string; rating?: string; className?: string; }; export default function TrustStrip({ license = 'TECL 12345', years = '19+ Years', rating = '4.9★ (200+ reviews)', className = '' }: Props) { const trustBadges = [ { icon: ( ), text: 'Licensed & Insured', subtext: license, color: 'text-green-600' }, { icon: ( ), text: 'Top Rated', subtext: rating, color: 'text-yellow-500' }, { icon: ( ), text: '24/7 Emergency', subtext: '< 60 min response', color: 'text-red-600' }, { icon: ( ), text: 'BBB A+ Rating', subtext: 'Accredited Business', color: 'text-blue-600' }, { icon: ( ), text: 'Free Estimates', subtext: 'No hidden fees', color: 'text-emerald-600' }, { icon: ( ), text: 'Local Experts', subtext: years, color: 'text-purple-600' } ]; return (