File size: 39,823 Bytes
00dc017 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 | <!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Должанская GO - Суперсервис отдыха</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="manifest" href="/manifest.json">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
font-family: 'Inter', sans-serif;
}
.map-container {
height: 400px;
background-color: #e5e7eb;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
}
.beach-status-card {
transition: all 0.3s ease;
}
.beach-status-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.listing-card {
transition: all 0.2s ease;
}
.listing-card:hover {
transform: translateY(-3px);
}
.offline-indicator {
transition: all 0.3s ease;
}
.wave {
animation: wave 8s linear infinite;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}
@keyframes wave {
0% { transform: translateX(0); }
50% { transform: translateX(-25%); }
100% { transform: translateX(-50%); }
}
/* Анимации для офлайн режима */
@keyframes pulse-offline {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.pulse-offline {
animation: pulse-offline 2s infinite;
}
/* Стили для имитации карты */
.custom-map-marker {
width: 24px;
height: 24px;
border-radius: 50% 50% 50% 0;
background: #3b82f6;
position: absolute;
transform: rotate(-45deg);
left: 50%;
top: 50%;
margin: -20px 0 0 -12px;
}
.custom-map-marker:after {
content: '';
width: 12px;
height: 12px;
margin: 6px 0 0 6px;
background: #fff;
position: absolute;
border-radius: 50%;
}
/* Адаптивные стили */
@media (max-width: 768px) {
.map-container {
height: 300px;
}
}
/* Стили для имитации голосового интерфейса */
.voice-pulse {
animation: voicePulse 1.5s infinite;
}
@keyframes voicePulse {
0% { transform: scale(1); opacity: 1; }
70% { transform: scale(2); opacity: 0; }
100% { transform: scale(1); opacity: 0; }
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Офлайн индикатор -->
<div class="offline-indicator fixed top-4 right-4 bg-yellow-100 border border-yellow-400 text-yellow-700 px-4 py-3 rounded hidden z-50" role="alert">
<div class="flex items-center">
<i class="fas fa-wifi-slash mr-2"></i>
<span class="font-medium">Офлайн режим</span>
</div>
</div>
<!-- Навигационная панель -->
<nav class="bg-white shadow-md fixed top-0 w-full z-40">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-umbrella-beach text-blue-600 text-2xl mr-2"></i>
<span class="font-bold text-xl text-blue-700">Должанская GO</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-4">
<a href="#" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">Жилье</a>
<a href="#" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">Пляжи</a>
<a href="#" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">Инфраструктура</a>
<a href="#" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">События</a>
</div>
<div class="flex items-center">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">
<i class="fas fa-plus mr-1"></i> Разместить
</button>
<button class="ml-4 p-2 rounded-full bg-gray-100 hover:bg-gray-200">
<i class="fas fa-user text-gray-600"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Основное содержимое -->
<main class="pt-20 pb-24">
<!-- Герой секция -->
<section class="bg-gradient-to-r from-blue-500 to-blue-700 text-white py-16 relative overflow-hidden">
<div class="wave">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill" fill="#FFFFFF" fill-opacity="0.3"></path>
</svg>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="md:w-2/3">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Отдых в Должанской стал проще</h1>
<p class="text-xl mb-8">Находите лучшее жилье, чистые пляжи и всё необходимое для идеального отдыха на Азовском море</p>
<!-- Естественно-языковой поиск -->
<div class="bg-white rounded-lg shadow-lg p-4 text-gray-800">
<div class="flex items-center">
<div class="flex-grow relative">
<input type="text" placeholder="Например: до 3к ₽, 10 мин до пляжа, кухня, парковка..." class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
<button class="absolute right-16 top-3 text-gray-400 hover:text-blue-600">
<i class="fas fa-microphone"></i>
</button>
</div>
<button class="ml-2 bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg flex items-center">
<i class="fas fa-search mr-2"></i> Найти
</button>
</div>
<div class="mt-2 text-sm text-gray-500 flex flex-wrap">
<span class="mr-3">Популярное:</span>
<a href="#" class="text-blue-600 mr-3">с детьми</a>
<a href="#" class="text-blue-600 mr-3">недалеко от косы</a>
<a href="#" class="text-blue-600">с кондиционером</a>
</div>
</div>
</div>
</div>
</section>
<!-- Категории -->
<section class="py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-2xl font-bold mb-8">Что вы ищете?</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-white rounded-lg shadow p-6 text-center hover:shadow-md transition-shadow">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-bed text-blue-600 text-2xl"></i>
</div>
<h3 class="font-semibold">Жилье</h3>
<p class="text-sm text-gray-600 mt-2">Найдите идеальное место для отдыха</p>
</div>
<div class="bg-white rounded-lg shadow p-6 text-center hover:shadow-md transition-shadow">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-umbrella-beach text-green-600 text-2xl"></i>
</div>
<h3 class="font-semibold">Пляжи</h3>
<p class="text-sm text-gray-600 mt-2">Актуальная информация о состоянии пляжей</p>
</div>
<div class="bg-white rounded-lg shadow p-6 text-center hover:shadow-md transition-shadow">
<div class="bg-yellow-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-wind text-yellow-600 text-2xl"></i>
</div>
<h3 class="font-semibold">Ветер</h3>
<p class="text-sm text-gray-600 mt-2">Идеальные условия для кайта и серфинга</p>
</div>
<div class="bg-white rounded-lg shadow p-6 text-center hover:shadow-md transition-shadow">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-utensils text-purple-600 text-2xl"></i>
</div>
<h3 class="font-semibold">Еда</h3>
<p class="text-sm text-gray-600 mt-2">Кафе, столовые и рестораны</p>
</div>
</div>
</div>
</section>
<!-- Популярное жилье -->
<section class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center mb-8">
<h2 class="text-2xl font-bold">Популярные варианты жилья</h2>
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Смотреть все</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Карточка жилья 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden listing-card">
<div class="relative">
<img src="https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Жилье" class="w-full h-48 object-cover">
<div class="absolute top-4 left-4 bg-white rounded-full px-3 py-1 text-sm font-semibold flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i> 4.8
</div>
<button class="absolute top-4 right-4 bg-white rounded-full w-8 h-8 flex items-center justify-center">
<i class="far fa-heart text-gray-600"></i>
</button>
</div>
<div classp-4">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Уютный домик у моря</h3>
<div class="font-semibold">2 500 ₽<span class="text-gray-600 text-sm font-normal">/ночь</span></div>
</div>
<p class="text-gray-600 mt-1 flex items-center">
<i class="fas fa-map-marker-alt text-gray-400 mr-2"></i> 450 м до пляжа
</p>
<div class="flex mt-3 text-sm">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded mr-2">Кухня</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded mr-2">Кондиционер</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded">Парковка</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">
<i class="fas fa-phone-alt mr-2"></i> Связаться
</button>
</div>
</div>
<!-- Карточка жилья 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden listing-card">
<div class="relative">
<img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Жилье" class="w-full h-48 object-cover">
<div class="absolute top-4 left-4 bg-white rounded-full px-3 py-1 text-sm font-semibold flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i> 4.9
</div>
<button class="absolute top-4 right-4 bg-white rounded-full w-8 h-8 flex items-center justify-center">
<i class="far fa-heart text-gray-600"></i>
</button>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Апартаменты с видом на море</h3>
<div class="font-semibold">3 200 ₽<span class="text-gray-600 text-sm font-normal">/ночь</span></div>
</div>
<p class="text-gray-600 mt-1 flex items-center">
<i class="fas fa-map-marker-alt text-gray-400 mr-2"></i> 200 м до пляжа
</p>
<div class="flex mt-3 text-sm">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded mr-2">Wi-Fi</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded mr-2">Бассейн</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded">Для детей</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">
<i class="fas fa-phone-alt mr-2"></i> Связаться
</button>
</div>
</div>
<!-- Карточка жилья 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden listing-card">
<div class="relative">
<img src="https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Жилье" class="w-full h-48 object-cover">
<div class="absolute top-4 left-4 bg-white rounded-full px-3 py-1 text-sm font-semibold flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i> 4.7
</div>
<button class="absolute top-4 right-4 bg-white rounded-full w-8 h-8 flex items-center justify-center">
<i class="far fa-heart text-gray-600"></i>
</button>
</div>
<div class="p-4">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Семейный гостевой дом</h3>
<div class="font-semibold">4 000 ₽<span class="text-gray-600 text-sm font-normal">/ночь</span></div>
</div>
<p class="text-gray-600 mt-1 flex items-center">
<i class="fas fa-map-marker-alt text-gray-400 mr-2"></i> 350 м до пляжа
</p>
<div class="flex mt-3 text-sm">
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded mr-2">Спальных мест: 6</span>
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded">Двор</span>
</div>
<button class="mt-4 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">
<i class="fas fa-phone-alt mr-2"></i> Связаться
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Честная карта пляжей -->
<section class="py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center mb-8">
<h2 class="text-2xl font-bold">Честная карта пляжей</h2>
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Все отчеты</a>
</div>
<div class="bg-white rounded-xl shadow-md p-6 mb-8">
<div class="flex flex-col md:flex-row gap-6">
<div class="md:w-1/2">
<div class="map-container relative">
<div class="custom-map-marker"></div>
<div class="absolute top-4 left-4 bg-white rounded-lg shadow px-3 py-2">
<div class="text-sm font-medium">Центральный пляж</div>
<div class="flex items-center mt-1">
<div class="w-3 h-3 bg-green-500 rounded-full mr-1"></div>
<span class="text-xs">Хорошее состояние</span>
</div>
</div>
<div class="absolute bottom-4 right-4 bg-white rounded-lg shadow px-3 py-2">
<div class="text-xs">Имитация карты</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<h3 class="font-bold text-lg mb-4">Статус пляжей сегодня</h3>
<div class="space-y-4">
<div class="beach-status-card bg-white border border-gray-200 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-center">
<h4 class="font-semibold">Центральный пляж</h4>
<span class="px-2 py-1 bg-green-100 text-green-800 text-xs rounded-full">Проверено 2 ч назад</span>
</div>
<div class="flex items-center mt-2">
<div class="w-3 h-3 bg-green-500 rounded-full mr-2"></div>
<span class="text-sm">Чисто, медуз нет, вода прозрачная</span>
</div>
<div class="text-xs text-gray-500 mt-2">Отчет от: Анна К., доверие: 92%</div>
</div>
<div class="beach-status-card bg-white border border-gray-200 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-center">
<h4 class="font-semibold">Пляж у косы</h4>
<span class="px-2 py-1 bg-yellow-100 text-yellow-800 text-xs rounded-full">Проверено 5 ч назад</span>
</div>
<div class="flex items-center mt-2">
<div class="w-3 h-3 bg-yellow-500 rounded-full mr-2"></div>
<span class="text-sm">Небольшие водоросли, несколько медуз</span>
</div>
<div class="text-xs text-gray-500 mt-2">Отчет от: Михаил П., доверие: 85%</div>
</div>
</div>
<button class="mt-6 w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300 flex items-center justify-center">
<i class="fas fa-plus-circle mr-2"></i> Добавить отчет о пляже
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Ветро-дашборд -->
<section class="py-12 bg-gradient-to-br from-blue-400 to-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-2xl font-bold mb-8">Ветро-дашборд для кайтсерферов</h2>
<div class="bg-white bg-opacity-20 backdrop-filter backdrop-blur-sm rounded-xl p-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white bg-opacity-30 rounded-lg p-4 text-center">
<div class="text-5xl font-bold mb-2">15</div>
<div class="text-sm">км/ч</div>
<div class="mt-4 flex justify-center">
<i class="fas fa-wind text-3xl transform -rotate-45"></i>
</div>
<div class="mt-2 text-sm">СЗ направление</div>
</div>
<div class="bg-white bg-opacity-30 rounded-lg p-4">
<h3 class="font-semibold mb-3">Сейчас идеально для</h3>
<div class="flex items-center mb-2">
<i class="fas fa-wind mr-2"></i>
<span>Начинающих кайтсерферов</span>
</div>
<div class="flex items-center">
<i class="fas fa-water mr-2"></i>
<span>Серфинга на сапбордах</span>
</div>
</div>
<div class="bg-white bg-opacity-30 rounded-lg p-4">
<h3 class="font-semibold mb-3">Ближайшие споты</h3>
<div class="flex items-center mb-2">
<i class="fas fa-map-marker-alt mr-2"></i>
<span>Центральный пляж (1.2 км)</span>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt mr-2"></i>
<span>Коса Долгая (3.5 км)</span>
</div>
<button class="mt-4 w-full bg-white bg-opacity-0 border border-white hover:bg-white hover:bg-opacity-20 text-white py-2 rounded-lg font-medium transition duration-300">
Показать на карте
</button>
</div>
</div>
</div>
<div class="mt-8 flex justify-center">
<div class="bg-white text-blue-600 rounded-full px-6 py-3 font-medium inline-flex items-center">
<i class="fas fa-wind mr-2"></i> Прогноз ветра на 3 дня
</div>
</div>
</div>
</section>
<!-- Чат-гид -->
<section class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-2xl font-bold mb-8">Гид Должанской - всегда поможет</h2>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/3 bg-blue-600 text-white p-6">
<h3 class="font-bold text-xl mb-4">Задайте вопрос</h3>
<p class="mb-6">Наш умный помощник ответит на любые вопросы об отдыхе в Должанской</p>
<div class="space-y-3">
<div class="bg-blue-700 rounded-lg p-3 cursor-pointer hover:bg-blue-800">
<div class="font-medium">Подбери жилье до 3000₽ с кухней</div>
</div>
<div class="bg-blue-700 rounded-lg p-3 cursor-pointer hover:bg-blue-800">
<div class="font-medium">Как доехать до косы?</div>
</div>
<div class="bg-blue-700 rounded-lg p-3 cursor-pointer hover:bg-blue-800">
<div class="font-medium">Где ближайшая аптека?</div>
</div>
</div>
<button class="mt-6 w-full bg-white text-blue-600 py-3 rounded-lg font-medium flex items-center justify-center">
<i class="fas fa-microphone mr-2"></i> Голосовой запрос
</button>
</div>
<div class="md:w-2/3 p-6">
<div class="border border-gray-200 rounded-lg h-64 overflow-y-auto p-4">
<div class="flex items-start mb-4">
<div class="bg-blue-100 rounded-full w-8 h-8 flex items-center justify-center mr-3">
<i class="fas fa-robot text-blue-600"></i>
</div>
<div class="bg-gray-100 rounded-lg p-3 max-w-xs">
<p>Привет! Я ваш гид по Должанской. Чем могу помочь?</p>
</div>
</div>
<div class="flex items-start mb-4 justify-end">
<div class="bg-gray-100 rounded-lg p-3 max-w-xs">
<p>Ищу жилье до 3000 рублей в сутки с кондиционером</p>
</div>
<div class="bg-blue-100 rounded-full w-8 h-8 flex items-center justify-center ml-3">
<i class="fas fa-user text-blue-600"></i>
</div>
</div>
<div class="flex items-start mb-4">
<div class="bg-blue-100 rounded-full w-8 h-8 flex items-center justify-center mr-3">
<i class="fas fa-robot text-blue-600"></i>
</div>
<div class="bg-gray-100 rounded-lg p-3 max-w-xs">
<p>Нашлось 5 вариантов. Уточните, на сколько человек нужно жилье и на какие даты?</p>
</div>
</div>
</div>
<div class="flex mt-4">
<input type="text" placeholder="Введите ваш вопрос..." class="flex-grow border border-gray-300 rounded-l-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
<button class="bg-blue-600 text-white px-4 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Офлайн возможности -->
<section class="py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-2xl font-bold mb-8">Работает без интернета</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<div class="bg-white rounded-xl shadow-md p-6 h-full">
<div class="flex items-center mb-4">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-map-marked-alt text-blue-600 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Карты и навигация офлайн</h3>
</div>
<p class="text-gray-600">Все карты, маршруты и информация о POI доступны без подключения к интернету</p>
</div>
</div>
<div>
<div class="bg-white rounded-xl shadow-md p-6 h-full">
<div class="flex items-center mb-4">
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-house-user text-green-600 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Каталог жилья офлайн</h3>
</div>
<p class="text-gray-600">Просматривайте сохраненные варианты жилья и контакты даже без сети</p>
</div>
</div>
<div>
<div class="bg-white rounded-xl shadow-md p-6 h-full">
<div class="flex items-center mb-4">
<div class="bg-purple-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-tasks text-purple-600 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Чек-листы и заметки</h3>
</div>
<p class="text-gray-600">Создавайте списки и важные заметки, которые синхронизируются при появлении сети</p>
</div>
</div>
<div>
<div class="bg-white rounded-xl shadow-md p-6 h-full">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 w-12 h-12 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-cloud-upload-alt text-yellow-600 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Авто-синхронизация</h3>
</div>
<p class="text-gray-600">Все созданные вами отчеты и заявки автоматически отправятся при восстановлении связи</p>
</div>
</div>
</div>
<div class="mt-8 text-center">
<div class="pulse-offline inline-flex items-center bg-blue-600 text-white px-6 py-3 rounded-full font-medium">
<i class="fas fa-wifi-slash mr-2"></i> Офлайн-режим активен
</div>
</div>
</div>
</section>
</main>
<!-- Нижняя навигация -->
<nav class="fixed bottom-0 w-full bg-white shadow-md z-40 md:hidden">
<div class="flex justify-around">
<a href="#" class="flex flex-col items-center py-3 px-5 text-blue-600">
<i class="fas fa-home text-lg"></i>
<span class="text-xs mt-1">Главная</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-5 text-gray-600">
<i class="fas fa-search text-lg"></i>
<span class="text-xs mt-1">Поиск</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-5 text-gray-600">
<i class="fas fa-map-marked-alt text-lg"></i>
<span class="text-xs mt-1">Карта</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-5 text-gray-600">
<i class="fas fa-comment-dots text-lg"></i>
<span class="text-xs mt-1">Чат</span>
</a>
<a href="#" class="flex flex-col items-center py-3 px-5 text-gray-600">
<i class="fas fa-user text-lg"></i>
<span class="text-xs mt-1">Профиль</span>
</a>
</div>
</nav>
<script>
// Имитация офлайн режима
document.addEventListener('DOMContentLoaded', function() {
const offlineIndicator = document.querySelector('.offline-indicator');
// Случайным образом показываем индикатор офлайн режима
if (Math.random() > 0.5) {
offlineIndicator.classList.remove('hidden');
// Через 5 секунд скрываем индикатор (имитация восстановления связи)
setTimeout(() => {
offlineIndicator.classList.add('hidden');
}, 5000);
}
// Имитация голосового поиска
const voiceSearchBtn = document.querySelector('.fa-microphone').closest('button');
if (voiceSearchBtn) {
voiceSearchBtn.addEventListener('click', function() {
this.innerHTML = '<i class="fas fa-circle-notch voice-pulse text-blue-600"></i>';
// Через 3 секунды возвращаем исходную иконку
setTimeout(() => {
this.innerHTML = '<i class="fas fa-microphone"></i>';
alert('Голосовой поиск активирован! Скажите ваш запрос...');
}, 3000);
});
}
// Добавляем обработчики для карточек жилья
const listingCards = document.querySelectorAll('.listing-card');
listingCards.forEach(card => {
card.addEventListener('click', function() {
alert('Переход к детальной информации о жилье');
});
});
// Имитация добавления в избранное
const favButtons = document.querySelectorAll('.fa-heart');
favButtons.forEach(btn => {
btn.addEventListener('click', function(e) {
e.stopPropagation();
if (this.classList.contains('far')) {
this.classList.remove('far');
this.classList.add('fas', 'text-red-500');
} else {
this.classList.remove('fas', 'text-red-500');
this.classList.add('far');
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Demom/go" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |