import React from 'react'; import { ArrowRight, Code, Globe2, Cpu } from 'lucide-react'; import { Link } from 'react-router-dom'; import { useLanguage } from '../../context/LanguageContext'; const Hero: React.FC = () => { const { t } = useLanguage(); return (

{t('hero.title')}

{t('hero.subtitle')}

{t('hero.cta.consultation')} {t('hero.cta.discover')}

{t('hero.service1.title')}

{t('hero.service1.desc')}

{t('hero.service2.title')}

{t('hero.service2.desc')}

{t('hero.service3.title')}

{t('hero.service3.desc')}

); }; export default Hero;