import { Icon } from '@/components/Icon/Icon'; import { IconName } from '@/components/Icon/icons'; import styles from './TrustStrip.module.scss'; const items: { icon: IconName; title: string; desc: string }[] = [ { icon: 'truck', title: 'Доставка по РФ', desc: 'Склады в Европе, логистика до вашего города' }, { icon: 'shield', title: 'Гарантия', desc: 'Оригинальная продукция с сертификатами' }, { icon: 'clock', title: 'Быстрый отклик', desc: 'КП в течение 24 часов после запроса' }, { icon: 'star', title: 'Экспертиза', desc: 'Подбор аналогов и техническая поддержка' }, ]; export function TrustStrip() { return (
{items.map((t, i) => (
{t.title}
{t.desc}
))}
); }