import routeFactory from '@/assets/constants/routeFactory'; import images from '@/assets/images/images'; import AchievementTextBox from '@/components/layout/achievementTextBox'; import SectionTitle from '@/components/layout/sectionTitle'; import Button from '@/components/uikit/button'; import { t } from '@/locales/translates'; export default function AboutTopInfo() { const topInfoAchievementTitles = [ t('com_about_info_achievements_1') as string, t('com_about_info_achievements_2') as string, t('com_about_info_achievements_3') as string, t('com_about_info_achievements_4') as string, ]; return (
+25 {t('com_about_info_years_experience') as string}

{t('com_about_info_description') as string}

{topInfoAchievementTitles.map((title, index) => ( ))}
); }