|
| 1 | +--- |
| 2 | +import Higiene from "../assets/images/wash.png" |
| 3 | +import Limpieza from "../assets/images/laundry.png"; |
| 4 | +import Dieta from "../assets/images/howTo/dieta.png"; |
| 5 | +import Alimentacion from "../assets/images/lunch_dining.png"; |
| 6 | +import BienesyServicios from "../assets/images/bienes.png"; |
| 7 | +import HabitosSostenibles from "../assets/images/habitos_sost.png"; |
| 8 | +import CaculateCard from "../components/CaculateCard.astro"; |
| 9 | +import Resultado from "../assets/images/howTo/grafico.png"; |
| 10 | +import Rig from "../assets/images/howTo/rig-feliz.png"; |
| 11 | +import Semaforo from "../assets/images/Rango semáforo de 5 colores.png"; |
| 12 | +--- |
| 13 | + |
| 14 | +<section |
| 15 | + id="calcular" |
| 16 | + class="flex flex-col items-center gap-5 justify-between bg-[#F5F5F5] py-4 md:py-16 px-4 md:px-[100px] mx-auto my-auto max-w-[1440px] min-w-[100%] scroll-m-10" |
| 17 | +> |
| 18 | + <h1 class="text-center text-xl md:text-6xl font-bold"> |
| 19 | + Calculadora de Huella Hídrica </h1> |
| 20 | + <h2 class="md:text-2xl">La prueba dura aproximadamente 5 minutos</h2> |
| 21 | + <h2 class="md:text-2xl">Evalúa tu consumo de agua en cinco categorías principales:</h2> |
| 22 | + <div class="flex flex-col md:flex-row gap-2 md:justify-around w-full"> |
| 23 | + <CaculateCard |
| 24 | + img={Higiene.src} |
| 25 | + text="Higiene" |
| 26 | + altImg="Higiene" |
| 27 | + withImg="100px" |
| 28 | + stylesComponent="md:h-auto mt-5 transition ease-in-out duration-500 transform hover:scale-110 hover:bg-transparent mb-30" |
| 29 | + /> |
| 30 | + |
| 31 | + <CaculateCard |
| 32 | + img={Limpieza.src} |
| 33 | + text="Limpieza" |
| 34 | + altImg="Limpieza" |
| 35 | + withImg="100px" |
| 36 | + stylesComponent="md:h-auto mt-5 transition ease-in-out duration-500 transform hover:scale-110 hover:bg-transparent mb-30" |
| 37 | + /> |
| 38 | + |
| 39 | + <CaculateCard |
| 40 | + img={Alimentacion.src} |
| 41 | + text="Dieta" |
| 42 | + altImg="Imagen Dieta" |
| 43 | + withImg="100px" |
| 44 | + stylesComponent="md:h-auto mt-5 transition ease-in-out duration-500 transform hover:scale-110 hover:bg-transparent mb-30" |
| 45 | + /> |
| 46 | + <CaculateCard |
| 47 | + img={BienesyServicios.src} |
| 48 | + text="Bienes y Servicios" |
| 49 | + altImg="Imagen Bienes y Servicios" |
| 50 | + withImg="100px" |
| 51 | + stylesComponent="md:h-auto mt-5 transition ease-in-out duration-500 transform hover:scale-110 hover:bg-transparent mb-30" |
| 52 | + /> |
| 53 | + <CaculateCard |
| 54 | + img={HabitosSostenibles.src} |
| 55 | + text="Hábitos Sostenibles" |
| 56 | + altImg="Imagen Hábitos Sostenibles" |
| 57 | + withImg="130px" |
| 58 | + stylesComponent="md:h-auto mt-5 transition ease-in-out duration-500 transform hover:scale-110 hover:bg-transparent mb-30" |
| 59 | + /> |
| 60 | + </div> |
| 61 | + <h3 class="text-center text-base md:text-2xl max-w-[800px]"> |
| 62 | + Aprende a ahorrar agua con consejos prácticos que cuidan tu bolsillo y el planeta. |
| 63 | + </h3> |
| 64 | + |
| 65 | + |
| 66 | +</section> |
0 commit comments