'use client'; import { Users } from 'lucide-react'; import Image from 'next/image'; import AboutCounter from '@/shared/components/about-counter'; import { useLanguage } from '@/shared/language'; export const AboutSection = () => { const { t } = useLanguage(); return (

{t('home.about.title')}

{t('home.about.description1')}

{t('home.about.description2')}

{t('home.about.features.quality.title')}

{t('home.about.features.quality.description')}

{t('home.about.features.equipment.title')}

{t('home.about.features.equipment.description')}

{t('home.about.features.staff.title')}

{t('home.about.features.staff.description')}

About our company
); };