'use client'; 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 { TLocales } from '@/models/layout'; import { useTranslations } from 'next-intl'; import { useParams } from 'next/navigation'; export default function AboutTopInfo() { const t = useTranslations(); const params = useParams(); const locale = params.locale as TLocales; const routes = routeFactory(t, locale); const topInfoAchievementTitles = [ t('com_about_info_achievements_1'), t('com_about_info_achievements_2'), t('com_about_info_achievements_3'), t('com_about_info_achievements_4'), ]; return (
{' '}

{t('com_about_info_description')}

+25 {t('com_about_info_years_experience')}

{t('com_about_info_description')}

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