diff --git a/frontend/public/images/etsii.gif b/frontend/public/images/etsii.gif new file mode 100644 index 0000000..38d9b03 Binary files /dev/null and b/frontend/public/images/etsii.gif differ diff --git a/frontend/src/css/Home.css b/frontend/src/css/Home.css index 1a8fd92..5daa2f5 100644 --- a/frontend/src/css/Home.css +++ b/frontend/src/css/Home.css @@ -1,67 +1,22 @@ -.home-container { - font-family: Arial, sans-serif; - text-align: center; - background-color: #f4f4f4; - padding: 20px; +.color-animated-bold { + color: #ff8080; + font-weight: bold; + animation: hue-rotation 3s infinite linear; } -.hero-section { - background: #4CAF50; - color: white; - padding: 50px 20px; - border-radius: 8px; +.image-animated-bold { + border: 5px solid #ff8080; + border-radius: 50px; + animation: hue-rotation 3s infinite linear; } -.hero-title { - font-size: 3em; - margin-bottom: 10px; +@keyframes hue-rotation { + from { + filter: hue-rotate(0deg); + } + + to { + filter: hue-rotate(360deg); + } } -.hero-description { - font-size: 1.2em; - margin-bottom: 20px; -} - -.cta-button { - background-color: #fff; - color: #4CAF50; - border: none; - padding: 15px 30px; - font-size: 1.1em; - cursor: pointer; - border-radius: 5px; - transition: background-color 0.3s ease; -} - -.cta-button:hover { - background-color: #388E3C; - color: white; -} - -.about-section { - margin-top: 50px; -} - -.features { - display: flex; - justify-content: space-around; - margin-top: 30px; -} - -.feature { - background-color: #ffffff; - padding: 20px; - border-radius: 8px; - width: 30%; - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); -} - -.feature h3 { - font-size: 1.5em; - color: #333; -} - -.feature p { - font-size: 1.1em; - color: #666; -} diff --git a/frontend/src/pages/Home.jsx b/frontend/src/pages/Home.jsx index e2ba2cd..0c76da0 100644 --- a/frontend/src/pages/Home.jsx +++ b/frontend/src/pages/Home.jsx @@ -2,37 +2,9 @@ import '../css/Home.css'; const Home = () => { return ( -
-
-

ContaminUS

-

- Proyecto universitario para monitorear la calidad del aire usando sensores IoT. -

- -
- -
-

Sobre el Proyecto

-

- ContaminUS es una solución basada en tecnologías IoT para medir la calidad del aire en tiempo real. - Este proyecto busca crear una herramienta accesible para estudiantes, investigadores y comunidades - interesadas en el monitoreo ambiental. -

-
-
-

Medición en tiempo real

-

Monitorea la calidad del aire con sensores MQ-135 y DHT11, mostrando datos precisos y actualizados.

-
-
-

Aplicación web interactiva

-

Visualiza los datos de calidad del aire mediante mapas interactivos y gráficos.

-
-
-

Colaboración en la universidad

-

El proyecto está orientado a estudiantes que deseen aprender y colaborar con el análisis de datos ambientales.

-
-
-
+
+

No sé que poner XD

+
); } diff --git a/frontend/vite.config.js b/frontend/vite.config.js index ea857d2..9e07a0f 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -7,7 +7,7 @@ import os from 'os' // https://vite.dev/config/ export default defineConfig({ server: { - port: 8080, + port: 5173, }, plugins: [react(), cleanPlugin()], build: {