import React from 'react'; import PageHeader from '../components/PageHeader'; import { SERVICES } from '../constants'; import { ArrowRight } from 'lucide-react'; import { Link, useLocation } from 'react-router-dom'; const ServicesPage: React.FC = () => { const location = useLocation(); const isEnglish = location.pathname.startsWith('/en'); const prefix = isEnglish ? '/en' : ''; const pageTitle = isEnglish ? 'Our services' : 'Наши услуги'; const pageDescription = isEnglish ? 'A full range of engineering and construction services – from surveys to turnkey delivery.' : 'Полный спектр инженерных и строительных работ любой сложности. От изысканий до сдачи объекта под ключ.'; // Отфильтровываем технические задания и строительство из основных услуг const mainServices = SERVICES.filter( service => service.title !== 'Технические задания' && service.title !== 'Строительство' ); const technicalTasksService = SERVICES.find(service => service.title === 'Технические задания'); return (
{isEnglish ? 'Ready-made templates and examples of technical assignments for different types of engineering work. The documents are available for download and can be adapted to your project.' : 'Готовые шаблоны и примеры технических заданий для различных видов инженерных работ. Документы доступны для скачивания и могут быть адаптированы под ваш проект.'}
{isEnglish ? 'View templates' : 'Посмотреть образцы'}{description}