diff --git a/src/app/page.tsx b/src/app/page.tsx index 86f4728..29dc45b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,9 +37,8 @@ import { Star, Users, Award, - MapPin, } from "lucide-react"; -import { useState, useEffect } from "react"; +import { useState } from "react"; export default function LandingPage() { const [squareMeters, setSquareMeters] = useState(10); @@ -48,7 +47,6 @@ export default function LandingPage() { const [sliderPosition, setSliderPosition] = useState(50); const [currentBeforeAfterIndex, setCurrentBeforeAfterIndex] = useState(0); const [isDragging, setIsDragging] = useState(false); - const [mapLoaded, setMapLoaded] = useState(false); const cleaningTypePrices: Record = { Standard: 2500, @@ -127,52 +125,6 @@ export default function LandingPage() { setSliderPosition(percentage); }; - useEffect(() => { - // Load Yandex Maps script - const script = document.createElement('script'); - script.src = 'https://api-maps.yandex.ru/2.1/?apikey=d96acdc0-91a9-4c63-8c23-cfd97e90ca59&lang=ru_RU'; - script.async = true; - script.onload = () => { - if ((window as any).ymaps) { - (window as any).ymaps.ready(initMap); - } - }; - document.body.appendChild(script); - - return () => { - if (document.body.contains(script)) { - document.body.removeChild(script); - } - }; - }, []); - - const initMap = () => { - const ymaps = (window as any).ymaps; - const mapContainer = document.getElementById('yandex-map'); - if (mapContainer) { - const map = new ymaps.Map('yandex-map', { - center: [69.5948, 69.2242], // Shymkent coordinates - zoom: 14, - controls: ['zoomControl', 'fullscreenControl'], - }); - - const placemark = new ymaps.Placemark( - [69.5948, 69.2242], - { - balloonContent: '
Центр чистки ковров «Нурсат»
Шымкент, Казахстан
Тел: +7 776 341 30 30
', - hintContent: 'Центр чистки ковров «Нурсат»', - }, - { - preset: 'islands#redDotIcon', - iconColor: '#15479c', - } - ); - - map.geoObjects.add(placemark); - setMapLoaded(true); - } - }; - return ( -
-
-
- {/* Header */} -
-

Найдите нас на карте

-

Центр чистки ковров «Нурсат» расположен в Шымкенте. Приезжайте к нам или заказывайте услугу с доставкой

-
- - {/* Map Container with Lazy Loading */} -
- {!mapLoaded && ( -
-
-
-

Загрузка карты...

-
-
- )} -
-
- - {/* Contact Information */} -
-
- -
-

Адрес

-

Шымкент, Казахстан

-
-
-
- -
-

Телефон

-

+7 776 341 30 30

-
-
- -
-
-
-
-