import { motion } from 'framer-motion' import { useTranslation } from 'react-i18next' import './HowWeCanHelp.css' function HowWeCanHelp() { const { t } = useTranslation() const services = [ { icon: ( ), title: t('howItWorks.features.ocr.title'), description: t('howItWorks.features.ocr.description') }, { icon: ( ), title: t('howItWorks.features.reminders.title'), description: t('howItWorks.features.reminders.description') }, { icon: ( ), title: t('howItWorks.features.index.title'), description: t('howItWorks.features.index.description') } ] return ( {t('howItWorks.title')} {t('howItWorks.subtitle')} {t('howItWorks.cta')} {services.map((service, index) => ( {service.icon} {service.title} {service.description} View ))} ) } export default HowWeCanHelp
{service.description}