import React from 'react'; import PageHeader from '../components/PageHeader'; import { CheckCircle2, Map, FileText, MapPin, Landmark, ClipboardList, Navigation } from 'lucide-react'; import { useLocation } from 'react-router-dom'; const LandSurveyPage: React.FC = () => { const location = useLocation(); const isEnglish = location.pathname.startsWith('/en'); const services = [ { icon: Landmark, title: isEnglish ? 'Reclamation of disturbed lands' : 'Рекультивация нарушенных земель', description: isEnglish ? 'Restoration of land affected by industrial activities and bringing it into a condition suitable for further use.' : 'Восстановление земель после промышленной деятельности и приведение их в состояние, пригодное для дальнейшего использования' }, { icon: FileText, title: isEnglish ? 'Preparation of documentation for selecting forest land plots' : 'Подготовка материалов к актам выбора земельного участка лесного фонда', description: isEnglish ? 'Comprehensive preparation of documentation and coordination with supervisory authorities for selecting forest fund land plots.' : 'Комплексная подготовка документации и согласование с надзорными инстанциями для выбора участков лесного фонда' }, { icon: Map, title: isEnglish ? 'Urban development plan of a land plot' : 'Градостроительный план земельного участка', description: isEnglish ? 'Development of an urban development plan indicating all required parameters and land‑use restrictions for the territory.' : 'Разработка градостроительного плана с указанием всех необходимых параметров и ограничений использования территории' }, { icon: ClipboardList, title: isEnglish ? 'Planning and subdivision (demarcation) projects' : 'Проект планировки и проект межевания территории', description: isEnglish ? 'Development of planning and subdivision projects for integrated development of territories and rational land use.' : 'Разработка проектов планировки и межевания для комплексного освоения территорий и организации рационального землепользования' }, { icon: Navigation, title: isEnglish ? 'Obtaining technical specifications' : 'Получение технических условий', description: isEnglish ? 'Obtaining technical conditions for connection to engineering networks and further coordination with the relevant utility providers.' : 'Получение технических условий на подключение к инженерным сетям и дальнейшее согласование в соответствующих организациях' } ]; const cadastralWorks = [ { title: isEnglish ? 'Boundary agreement for land plots' : 'Согласование границ земельных участков', description: isEnglish ? 'Carrying out works to establish and agree land plot boundaries with interested parties and adjoining land users.' : 'Проведение работ по установлению и согласованию границ земельных участков с заинтересованными лицами и смежными землепользователями' }, { title: isEnglish ? 'Determining coordinates and boundaries of boundary markers' : 'Определение координат и границ межевых знаков', description: isEnglish ? 'Geodetic measurements and setting boundary markers in the field using modern surveying equipment.' : 'Геодезические измерения и закрепление межевых знаков на местности с использованием современного оборудования' }, { title: isEnglish ? 'Determining the land plot area' : 'Определение площади земельного участка', description: isEnglish ? 'Accurate calculation of the land plot area based on boundary marker coordinates using modern methods.' : 'Точный расчет площади земельного участка по полученным координатам межевых знаков с применением современных методик' }, { title: isEnglish ? 'Document package preparation' : 'Формирование пакета документов', description: isEnglish ? 'Preparation of the full set of documents and subsequent submission of the land management file (cadastral plan) to the relevant state authorities.' : 'Подготовка полного пакета документов и последующая сдача землеустроительного дела (межевой план) в соответствующие государственные органы' } ]; return (
{isEnglish ? 'Professional execution of land management and cadastral works of any complexity.' : 'Профессиональное выполнение землеустроительных и кадастровых работ любой сложности'}
{service.description}
{isEnglish ? 'Comprehensive execution of boundary survey works and preparation of documentation for state cadastral registration.' : 'Комплексное выполнение работ по межеванию земельных участков и подготовке документации для государственного кадастрового учета'}
{work.description}
{isEnglish ? 'Initial site survey and defining the scope of work.' : 'Первичное обследование территории и определение объема работ'}
{isEnglish ? 'Carrying out field measurements and setting boundaries with boundary markers.' : 'Проведение измерений и закрепление границ межевыми знаками'}
{isEnglish ? 'Agreeing established boundaries with adjoining land users.' : 'Согласование установленных границ со смежными землепользователями'}
{isEnglish ? 'Preparation of the cadastral (boundary) plan and the complete document package.' : 'Формирование межевого плана и полного пакета документов'}
{isEnglish ? 'Submitting documents to Rosreestr for state cadastral registration.' : 'Передача документов в Росреестр для постановки на кадастровый учет'}
{isEnglish ? 'From field measurements to obtaining the registration certificate.' : 'От измерений на местности до получения свидетельства о регистрации'}
{isEnglish ? 'Use of modern high‑precision geodetic equipment.' : 'Использование современного геодезического оборудования высокой точности'}
{isEnglish ? 'Proper preparation of all documents in strict accordance with current legislation.' : 'Грамотное оформление всех документов в соответствии с законодательством'}
{isEnglish ? 'Do you need land management or cadastral services?' : 'Нужны землеустроительные или кадастровые работы?'}
{isEnglish ? 'Order a service' : 'Заказать услугу'}