Spaces:
Running
Running
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Explorar | GoLocal</title> | |
| <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Open+Sans:wght@400;600&display=swap"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | |
| <style> | |
| :root { | |
| --jade: #5AB1BB; | |
| --orange: #FF7E5F; | |
| --deep-blue: #2E5266; | |
| --light-bg: #F8F9FA; | |
| } | |
| body { | |
| font-family: 'Montserrat', 'Open Sans', sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| background-color: var(--light-bg); | |
| max-width: 100%; | |
| overflow-x: hidden; | |
| } | |
| .app-container { | |
| max-width: 420px; | |
| margin: 0 auto; | |
| height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| position: relative; | |
| background-color: white; | |
| box-shadow: 0 0 15px rgba(0,0,0,0.1); | |
| } | |
| .content { | |
| flex: 1; | |
| overflow-y: auto; | |
| padding: 16px; | |
| } | |
| .tab-bar { | |
| display: flex; | |
| justify-content: space-around; | |
| padding: 12px 0; | |
| background-color: white; | |
| border-top: 1px solid #eee; | |
| } | |
| .tab { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| color: #777; | |
| font-size: 12px; | |
| text-decoration: none; | |
| } | |
| .tab.active { | |
| color: var(--jade); | |
| } | |
| .tab i { | |
| font-size: 20px; | |
| margin-bottom: 4px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="app-container"> | |
| <div class="content"> | |
| <div class="filters"> | |
| <button class="filter-btn active">Todos</button> | |
| <button class="filter-btn">Cultura</button> | |
| <button class="filter-btn">Comida</button> | |
| <button class="filter-btn">Naturaleza</button> | |
| </div> | |
| <div class="map-placeholder"> | |
| <img src="http://static.photos/cityscape/320x240/1" alt="Mapa" style="width:100%; border-radius:12px; margin:10px 0;"> | |
| </div> | |
| <div class="places-list"> | |
| <h3>Lugares cercanos</h3> | |
| <div class="place-card"> | |
| <img src="http://static.photos/travel/320x240/1" alt="Lugar" class="place-img"> | |
| <div class="place-info"> | |
| <h4>Museo de Arte</h4> | |
| <div class="rating"> | |
| <i class="fas fa-star"></i> 4.7 (128) | |
| </div> | |
| <div class="distance">1.2 km</div> | |
| </div> | |
| </div> | |
| <div class="place-card"> | |
| <img src="http://static.photos/food/320x240/1" alt="Lugar" class="place-img"> | |
| <div class="place-info"> | |
| <h4>Restaurante Local</h4> | |
| <div class="rating"> | |
| <i class="fas fa-star"></i> 4.5 (94) | |
| </div> | |
| <div class="distance">0.8 km</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="tab-bar"> | |
| <a href="index.html" class="tab"> | |
| <i class="fas fa-home"></i> | |
| <span>Inicio</span> | |
| </a> | |
| <a href="explorar.html" class="tab active"> | |
| <i class="fas fa-map-marked-alt"></i> | |
| <span>Explorar</span> | |
| </a> | |
| <a href="pasaporte.html" class="tab"> | |
| <i class="fas fa-passport"></i> | |
| <span>Pasaporte</span> | |
| </a> | |
| <a href="perfil.html" class="tab"> | |
| <i class="fas fa-user"></i> | |
| <span>Perfil</span> | |
| </a> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |