import { motion } from 'framer-motion' import { useTranslation } from 'react-i18next' import { Cpu, Languages, MessageSquare } from 'lucide-react' const services = [ { icon: Cpu, titleKey: 'services.pillar1_title', descKey: 'services.pillar1_desc' }, { icon: Languages, titleKey: 'services.pillar2_title', descKey: 'services.pillar2_desc' }, { icon: MessageSquare, titleKey: 'services.pillar3_title', descKey: 'services.pillar3_desc' }, ] export default function Services() { const { t } = useTranslation() return (

{t('services.title')}

{services.map((service, idx) => (

{t(service.titleKey)}

{t(service.descKey)}

))}
) }