import { type FC } from 'react' import Stats from './components/Stats' import Services from './components/Services' import Orders from './components/Orders' import NewOrderImage from '@/assets/images/new_order.png' import { t } from '@/locale' import Button from '@/components/Button' import { AddSquare, MessageQuestion } from 'iconsax-react' import { COLORS } from '@/constants/colors' import SupportImage from '@/assets/images/support1.png' import { Paths } from '@/config/Paths' import { Link } from 'react-router-dom' const Home: FC = () => { return (

{t('home.submitNewOrder')}

{t('home.specialSolution')}

{t('home.specialSolutionDescription')}

{t('home.specialSolutionFeature1')}
{t('home.specialSolutionFeature2')}
{t('home.specialSolutionFeature3')}
) } export default Home