From 2ac912eccb343f92e02d3c0f6874887b2f33a33c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Sat, 17 Feb 2024 09:52:33 -0300
Subject: [PATCH 01/16] Carpeta 404.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
He creado una carpeta específica para almacenar el componente 404. Esto facilitará la organización, especialmente porque planeo agregar más contenido al error 404 en el futuro.
---
frontend/src/Componentes/Estructura.jsx | 2 +-
frontend/src/Componentes/Pagina/{ => Error404}/Error404.jsx | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename frontend/src/Componentes/Pagina/{ => Error404}/Error404.jsx (100%)
diff --git a/frontend/src/Componentes/Estructura.jsx b/frontend/src/Componentes/Estructura.jsx
index bc03907..d91e849 100644
--- a/frontend/src/Componentes/Estructura.jsx
+++ b/frontend/src/Componentes/Estructura.jsx
@@ -13,7 +13,7 @@ import Proximamente from "./Pagina/Estadisticas/Proximamente";
{
/* Error404 */
}
-import Error404 from "./Pagina/Error404";
+import Error404 from "./Pagina/Error404/Error404";
const Estructura = () => {
return (
diff --git a/frontend/src/Componentes/Pagina/Error404.jsx b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
similarity index 100%
rename from frontend/src/Componentes/Pagina/Error404.jsx
rename to frontend/src/Componentes/Pagina/Error404/Error404.jsx
From f0175d02420ffed9ff89d6f8d6fa1bb3a79ce92b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Sat, 17 Feb 2024 16:31:24 -0300
Subject: [PATCH 02/16] Borrando Comentarios
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
😁😀
---
frontend/src/Componentes/Estructura.jsx | 19 ++-----------------
1 file changed, 2 insertions(+), 17 deletions(-)
diff --git a/frontend/src/Componentes/Estructura.jsx b/frontend/src/Componentes/Estructura.jsx
index d91e849..6b2e829 100644
--- a/frontend/src/Componentes/Estructura.jsx
+++ b/frontend/src/Componentes/Estructura.jsx
@@ -1,18 +1,9 @@
import { Route, Routes } from "react-router-dom";
-{
- /* NavBar */
-}
import ListaElMasToto from "./Pagina/ListaElMasToto";
import CowboyDelDia from "./Pagina/CowboyDelDia";
-{
- /* Estadisticas */
-}
import EstadisticasElMasToto from "./Pagina/Estadisticas/EstadisticasElMasToto";
import EstadisticasCowboyDelDia from "./Pagina/Estadisticas/EstadisticasCowboyDelDia";
import Proximamente from "./Pagina/Estadisticas/Proximamente";
-{
- /* Error404 */
-}
import Error404 from "./Pagina/Error404/Error404";
const Estructura = () => {
@@ -26,14 +17,8 @@ const Estructura = () => {
} />
{/* Estadisticas */}
- }
- />
- }
- />
+ } />
+ } />
} />
{/* Error404 */}
From 64dfeaeaa754d4454e61b242c65589b8b998e3a8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Sat, 17 Feb 2024 20:32:10 -0300
Subject: [PATCH 03/16] Error 404 pronto?
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
El componente de Error 404 está casi terminado.
Solo falta agregarle algunos detalles más, pero me he quedado sin ideas por el momento.
Solicité a Christian que creara una imagen para este componente; aún no estoy seguro si lo hará, pero mientras tanto, utilizaremos la que tenemos.
Por otro lado, en VSC me aparece un error en el componente del botón relacionado con los PROPS. No sé la razón exacta, pero a pesar de eso, sigue funcionando correctamente.
---
frontend/src/Componentes/Botones.jsx | 15 ++++++++++
frontend/src/Componentes/Botons.jsx | 9 ------
frontend/src/Componentes/EstilosGenerales.css | 3 +-
.../Componentes/Pagina/Error404/Error404.css | 19 +++++++++++++
.../Componentes/Pagina/Error404/Error404.jsx | 28 ++++++++++++++++++-
.../src/Componentes/Pagina/Estadisticas.jsx | 14 ----------
6 files changed, 63 insertions(+), 25 deletions(-)
create mode 100644 frontend/src/Componentes/Botones.jsx
delete mode 100644 frontend/src/Componentes/Botons.jsx
create mode 100644 frontend/src/Componentes/Pagina/Error404/Error404.css
delete mode 100644 frontend/src/Componentes/Pagina/Estadisticas.jsx
diff --git a/frontend/src/Componentes/Botones.jsx b/frontend/src/Componentes/Botones.jsx
new file mode 100644
index 0000000..5461780
--- /dev/null
+++ b/frontend/src/Componentes/Botones.jsx
@@ -0,0 +1,15 @@
+import { Link } from "react-router-dom";
+
+function Botones(props) {
+ const { infBoton, ruta } = props;
+
+ return (
+
+
+
+ );
+}
+
+export default Botones;
diff --git a/frontend/src/Componentes/Botons.jsx b/frontend/src/Componentes/Botons.jsx
deleted file mode 100644
index 8113a7b..0000000
--- a/frontend/src/Componentes/Botons.jsx
+++ /dev/null
@@ -1,9 +0,0 @@
-const Botons = () => {
- return (
- <>
-
- >
- );
-};
-
-export default Botons;
diff --git a/frontend/src/Componentes/EstilosGenerales.css b/frontend/src/Componentes/EstilosGenerales.css
index 62ee1a0..793ee07 100644
--- a/frontend/src/Componentes/EstilosGenerales.css
+++ b/frontend/src/Componentes/EstilosGenerales.css
@@ -46,9 +46,10 @@ body {
transition: border-color 0.25s;
}
.btn:hover {
- border-color: var(--hoverBorde);
+ border-color: var(--hoverTexto);
color: var(--hoverTexto);
background-color: var(--fondoNav);
+ transition: 0.3s;
}
.btn :focus,
.btn :focus-visible {
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.css b/frontend/src/Componentes/Pagina/Error404/Error404.css
new file mode 100644
index 0000000..a759a9a
--- /dev/null
+++ b/frontend/src/Componentes/Pagina/Error404/Error404.css
@@ -0,0 +1,19 @@
+:root {
+ /* Tipografias */
+ --tipografiaTitulo: "Rye", serif;
+ --tipografiaGeneral: "Playfair Display", serif;
+
+ /* Colores */
+ --hoverTexto: #ff3300;
+ --hoverBorde: #646cff;
+ --boton: #1a1a1a;
+ --fondoPricipal: #242424;
+ --fondoNav: #333;
+ --texto: #fff;
+}
+
+.titulo {
+ background-color: var(--fondoNav);
+ color: var(--texto);
+ font-size: x-large;
+}
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.jsx b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
index a7a40fd..946e90e 100644
--- a/frontend/src/Componentes/Pagina/Error404/Error404.jsx
+++ b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
@@ -1,7 +1,33 @@
+import { Link } from "react-router-dom";
+import "./Error404.css";
+
const Error404 = () => {
return (
<>
-
Error 404
+
+
+
+
Error 404
+
+ ¡Alto ahí, forastero! Parece que has encontrado un territorio
+ desconocido en el vasto desierto digital. No te preocupes, nuestros
+ sheriff de la red están en camino para guiarte de regreso al pueblo
+ principal. Mientras tanto, ¿por qué no te relajas con un poco de
+ música en nuestro salon virtual?
+
-
-
- >
- );
-};
-
-export default Estadisticas;
From 984cb02e1c45304190a408c92fab92c0f670f03e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Sun, 18 Feb 2024 09:13:55 -0300
Subject: [PATCH 04/16] Error 404 terminado?
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
He terminado de pulir el error 404. Finalmente, opté por convertirlo en una tarjeta similar a la que muestra al 'Cowboy del día'
---
frontend/src/Componentes/EstilosGenerales.css | 7 ----
.../Componentes/Pagina/Error404/Error404.css | 19 ----------
.../Componentes/Pagina/Error404/Error404.jsx | 35 ++++++-------------
.../Pagina/Tarjetas/TarjetaDia.jsx | 18 ++++++----
4 files changed, 22 insertions(+), 57 deletions(-)
delete mode 100644 frontend/src/Componentes/Pagina/Error404/Error404.css
diff --git a/frontend/src/Componentes/EstilosGenerales.css b/frontend/src/Componentes/EstilosGenerales.css
index 793ee07..4790c3b 100644
--- a/frontend/src/Componentes/EstilosGenerales.css
+++ b/frontend/src/Componentes/EstilosGenerales.css
@@ -55,10 +55,3 @@ body {
.btn :focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
-
-/* Card */
-
-.card {
- width: 400px;
- justify-content: center;
-}
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.css b/frontend/src/Componentes/Pagina/Error404/Error404.css
deleted file mode 100644
index a759a9a..0000000
--- a/frontend/src/Componentes/Pagina/Error404/Error404.css
+++ /dev/null
@@ -1,19 +0,0 @@
-:root {
- /* Tipografias */
- --tipografiaTitulo: "Rye", serif;
- --tipografiaGeneral: "Playfair Display", serif;
-
- /* Colores */
- --hoverTexto: #ff3300;
- --hoverBorde: #646cff;
- --boton: #1a1a1a;
- --fondoPricipal: #242424;
- --fondoNav: #333;
- --texto: #fff;
-}
-
-.titulo {
- background-color: var(--fondoNav);
- color: var(--texto);
- font-size: x-large;
-}
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.jsx b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
index 946e90e..34394ba 100644
--- a/frontend/src/Componentes/Pagina/Error404/Error404.jsx
+++ b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
@@ -1,32 +1,19 @@
-import { Link } from "react-router-dom";
+// import { Link } from "react-router-dom";
import "./Error404.css";
+import TarjetaDia from "../Tarjetas/TarjetaDia";
const Error404 = () => {
+ const tarjeta = {
+ persona: "Error 404",
+ titulos: "¡Alto ahí, forastero!",
+ listaTitulos:
+ "Parece que has encontrado un territorio desconocido en el vasto desierto digital. No te preocupes, nuestros sheriff de la red están en camino para guiarte de regreso al pueblo principal. Mientras tanto, ¿por qué no te relajas con un poco de música en nuestro salon virtual?",
+ };
+
return (
<>
-
-
-
-
Error 404
-
- ¡Alto ahí, forastero! Parece que has encontrado un territorio
- desconocido en el vasto desierto digital. No te preocupes, nuestros
- sheriff de la red están en camino para guiarte de regreso al pueblo
- principal. Mientras tanto, ¿por qué no te relajas con un poco de
- música en nuestro salon virtual?
-
From a923880522d6d49aca2e1cef5a903fd2cbf1ce7f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Sun, 18 Feb 2024 18:26:35 -0300
Subject: [PATCH 08/16] Error404 fin?
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Hey Franco, necesito enviarte un mensaje de voz por WhatsApp o Discord, tengo un lío enorme. Más o menos he logrado resolverlo. Resulta que metí la pata con toda esta rama. La idea original era solo trabajar en el componente Error404, pero terminé modificando otras cosas para que ese componente quedara bien y, sin darme cuenta, terminé alterando casi todo, ¡ja! Bueno, luego te contacto por audio para explicarte mejor.
---
frontend/src/Componentes/Botones.jsx | 34 ++++++++++++++-----
.../Componentes/Pagina/Error404/Error404.jsx | 10 +++++-
.../Pagina/InfoTonto/TarjetaDia.jsx | 1 -
.../Componentes/Pagina/ListaElMasTonto.jsx | 4 +--
4 files changed, 37 insertions(+), 12 deletions(-)
diff --git a/frontend/src/Componentes/Botones.jsx b/frontend/src/Componentes/Botones.jsx
index 5461780..94fc3d4 100644
--- a/frontend/src/Componentes/Botones.jsx
+++ b/frontend/src/Componentes/Botones.jsx
@@ -1,15 +1,33 @@
import { Link } from "react-router-dom";
-function Botones(props) {
- const { infBoton, ruta } = props;
+const Botones = ({ button }) => {
+ if (!button) {
+ return;
+ }
return (
-
-
-
+ <>
+
+
+
+ >
);
-}
+};
export default Botones;
+
+// function Botones(props) {
+// const { infBoton, ruta } = props;
+
+// return (
+//
+//
+//
+// );
+// }
+
+// export default Botones;
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.jsx b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
index bbe580b..170b308 100644
--- a/frontend/src/Componentes/Pagina/Error404/Error404.jsx
+++ b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
@@ -1,3 +1,4 @@
+import Botones from "../../Botones.jsx";
import TarjetaDia from "../InfoTonto/TarjetaDia.jsx";
const Error404 = () => {
@@ -6,15 +7,22 @@ const Error404 = () => {
titulos: "¡Alto ahí, forastero!",
listaTitulos:
"Parece que has encontrado un territorio desconocido en el vasto desierto digital. No te preocupes, nuestros sheriff de la red están en camino para guiarte de regreso al pueblo principal. Mientras tanto, ¿por qué no te relajas con un poco de música en nuestro salon virtual?",
+ boton: "boton",
};
+ const button = {
+ ruta: "/",
+ infBoton: "Inicio"
+ }
+
return (
<>
+
>
);
};
-export default Error404;
+export default Error404;
\ No newline at end of file
diff --git a/frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx b/frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx
index 71e5016..1c63923 100644
--- a/frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx
+++ b/frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx
@@ -6,7 +6,6 @@ const TarjetaDia = ({ tarjeta }) => {
}
return (
<>
-
{tarjeta.titulo}
diff --git a/frontend/src/Componentes/Pagina/ListaElMasTonto.jsx b/frontend/src/Componentes/Pagina/ListaElMasTonto.jsx
index 50eb6cb..3f06aba 100644
--- a/frontend/src/Componentes/Pagina/ListaElMasTonto.jsx
+++ b/frontend/src/Componentes/Pagina/ListaElMasTonto.jsx
@@ -3,7 +3,6 @@ import ListaParticipantes from "./InfoTonto/ListaParticipantes";
const ListaElMasTonto = () => {
const tarjeta = {
- titulo: "Tonto del día de hoy es...",
persona: "Nombre: Jorge",
cantidad: "68",
titulos: "Titulos",
@@ -18,10 +17,11 @@ const ListaElMasTonto = () => {
<>
{/* Tarjeta del día */}
+
Tonto del día de hoy es...
-
Lista de participantes
{/* Lista de participantes */}
+
Lista de participantes
From 6358f1e5cd84252f9ac6afcbd802c1ca661832b3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Tue, 20 Feb 2024 07:24:46 -0300
Subject: [PATCH 09/16] Nuevo Inicio
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
He realizado modificaciones en la página de inicio. Ahora, esta sección mostrará únicamente dos tarjetas: una destacando al 'tonto del día' y otra al 'cowboy del día'. Toda la información adicional estará disponible en sus respectivas secciones, como la lista completa de 'tontos del día' en la sección dedicada a ello.
---
frontend/src/Componentes/Estructura.jsx | 7 ++++--
frontend/src/Componentes/Inicio.jsx | 26 ++++++++++++++++++++++
frontend/src/Componentes/NavBar/NavBar.jsx | 7 +++---
3 files changed, 35 insertions(+), 5 deletions(-)
create mode 100644 frontend/src/Componentes/Inicio.jsx
diff --git a/frontend/src/Componentes/Estructura.jsx b/frontend/src/Componentes/Estructura.jsx
index e40f992..862bdd1 100644
--- a/frontend/src/Componentes/Estructura.jsx
+++ b/frontend/src/Componentes/Estructura.jsx
@@ -5,6 +5,7 @@ import EstadisticasElMasTonto from "./Pagina/Estadisticas/EstadisticasElMasTonto
import EstadisticasCowboyDelDia from "./Pagina/Estadisticas/EstadisticasCowboyDelDia";
import Proximamente from "./Pagina/Estadisticas/Proximamente";
import Error404 from "./Pagina/Error404/Error404";
+import Inicio from "./Inicio";
const Estructura = () => {
return (
@@ -12,9 +13,11 @@ const Estructura = () => {
From 756e2708c6197eba2ef1e6659ed1c7952c6371aa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Tue, 20 Feb 2024 18:37:37 -0300
Subject: [PATCH 10/16] Borrando los - if.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Después de eliminar los 'if', todo está funcionando correctamente. Tuve que comentar el componente 'TarjetaDelDia', ya que por ahora no se está utilizando en 'Inicio'. Sin embargo, ¿qué sucederá cuando comience a usar el componente 'TarjetaDelDia' en 'Inicio'? ¿Será necesario volver a utilizar el 'if'?
---
frontend/src/Componentes/Botones.jsx | 4 ----
frontend/src/Componentes/Inicio.jsx | 2 +-
frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx | 3 ---
3 files changed, 1 insertion(+), 8 deletions(-)
diff --git a/frontend/src/Componentes/Botones.jsx b/frontend/src/Componentes/Botones.jsx
index 94fc3d4..521ad93 100644
--- a/frontend/src/Componentes/Botones.jsx
+++ b/frontend/src/Componentes/Botones.jsx
@@ -1,10 +1,6 @@
import { Link } from "react-router-dom";
const Botones = ({ button }) => {
- if (!button) {
- return;
- }
-
return (
<>
diff --git a/frontend/src/Componentes/Inicio.jsx b/frontend/src/Componentes/Inicio.jsx
index a0dcef0..1687fce 100644
--- a/frontend/src/Componentes/Inicio.jsx
+++ b/frontend/src/Componentes/Inicio.jsx
@@ -17,7 +17,7 @@ const Inicio = () => {
{/* Tarjeta del cowboy del día */}
From 5bd4c261738c4b5f802b9201f5f2a52fe336c971 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Tue, 20 Feb 2024 18:57:22 -0300
Subject: [PATCH 11/16] Nombre componente a Tarjeta
Cambio de nombre de componente a Tarjeta
---
frontend/src/Componentes/Inicio.jsx | 6 +++---
frontend/src/Componentes/Pagina/Error404/Error404.jsx | 11 +++++------
.../Pagina/InfoTonto/{TarjetaDia.jsx => Tarjeta.jsx} | 4 ++--
frontend/src/Componentes/Pagina/ListaElMasTonto.jsx | 4 ++--
4 files changed, 12 insertions(+), 13 deletions(-)
rename frontend/src/Componentes/Pagina/InfoTonto/{TarjetaDia.jsx => Tarjeta.jsx} (93%)
diff --git a/frontend/src/Componentes/Inicio.jsx b/frontend/src/Componentes/Inicio.jsx
index 1687fce..fe0b65e 100644
--- a/frontend/src/Componentes/Inicio.jsx
+++ b/frontend/src/Componentes/Inicio.jsx
@@ -1,4 +1,4 @@
-import TarjetaDia from "./Pagina/InfoTonto/TarjetaDia";
+import Tarjeta from "./Pagina/InfoTonto/Tarjeta";
const Inicio = () => {
const tarjeta = {
@@ -13,11 +13,11 @@ const Inicio = () => {
{/* Tarjeta del día del mas tonto */}
Tonto del día de hoy es...
-
+
{/* Tarjeta del cowboy del día */}
Cowboy del día de hoy es...
- {/* */}
+ {/* */}
>
);
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.jsx b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
index 170b308..e5d11d4 100644
--- a/frontend/src/Componentes/Pagina/Error404/Error404.jsx
+++ b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
@@ -1,5 +1,5 @@
import Botones from "../../Botones.jsx";
-import TarjetaDia from "../InfoTonto/TarjetaDia.jsx";
+import Tarjeta from "../InfoTonto/Tarjeta.jsx";
const Error404 = () => {
const tarjeta = {
@@ -7,22 +7,21 @@ const Error404 = () => {
titulos: "¡Alto ahí, forastero!",
listaTitulos:
"Parece que has encontrado un territorio desconocido en el vasto desierto digital. No te preocupes, nuestros sheriff de la red están en camino para guiarte de regreso al pueblo principal. Mientras tanto, ¿por qué no te relajas con un poco de música en nuestro salon virtual?",
- boton: "boton",
};
const button = {
ruta: "/",
- infBoton: "Inicio"
- }
+ infBoton: "Inicio",
+ };
return (
<>
-
+
>
);
};
-export default Error404;
\ No newline at end of file
+export default Error404;
diff --git a/frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx b/frontend/src/Componentes/Pagina/InfoTonto/Tarjeta.jsx
similarity index 93%
rename from frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx
rename to frontend/src/Componentes/Pagina/InfoTonto/Tarjeta.jsx
index 16db621..449eec9 100644
--- a/frontend/src/Componentes/Pagina/InfoTonto/TarjetaDia.jsx
+++ b/frontend/src/Componentes/Pagina/InfoTonto/Tarjeta.jsx
@@ -1,6 +1,6 @@
import "../EstilosElMasTonto.css";
-const TarjetaDia = ({ tarjeta }) => {
+const Tarjeta = ({ tarjeta }) => {
return (
<>
From 3168e115877d36d340b6160e7d7c73145452d42f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20N=C3=BA=C3=B1ez?=
<124943644+JLeonN@users.noreply.github.com>
Date: Tue, 20 Feb 2024 19:26:24 -0300
Subject: [PATCH 12/16] Error 404 terminado
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
He completado el Error 404! Espero que esta vez el componente esté listo pronto. Realicé varios cambios significativos, y debo admitir que me gusta más en su forma actual. De todos modos, si necesitas más ajustes, házmelo saber y seguimos trabajando en ello juntos.
---
.../Componentes/Pagina/Error404/Error404.jsx | 38 +++++++++++++------
1 file changed, 27 insertions(+), 11 deletions(-)
diff --git a/frontend/src/Componentes/Pagina/Error404/Error404.jsx b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
index e5d11d4..dd74d92 100644
--- a/frontend/src/Componentes/Pagina/Error404/Error404.jsx
+++ b/frontend/src/Componentes/Pagina/Error404/Error404.jsx
@@ -1,14 +1,7 @@
+import { Link } from "react-router-dom";
import Botones from "../../Botones.jsx";
-import Tarjeta from "../InfoTonto/Tarjeta.jsx";
const Error404 = () => {
- const tarjeta = {
- persona: "Error 404",
- titulos: "¡Alto ahí, forastero!",
- listaTitulos:
- "Parece que has encontrado un territorio desconocido en el vasto desierto digital. No te preocupes, nuestros sheriff de la red están en camino para guiarte de regreso al pueblo principal. Mientras tanto, ¿por qué no te relajas con un poco de música en nuestro salon virtual?",
- };
-
const button = {
ruta: "/",
infBoton: "Inicio",
@@ -16,9 +9,32 @@ const Error404 = () => {
return (
<>
-
-
-
+
+
+
+
Error 404
+
+ Lo sentimos, la página que estás buscando no pudo ser encontrada.
+
+
+
+
+
+ Parece que has encontrado un territorio desconocido en el vasto
+ desierto digital. No te preocupes, nuestros sheriff de la red
+ están en camino para guiarte de regreso al pueblo principal.
+ Mientras tanto, ¿por qué no te relajas con un poco de música en
+ nuestro salon virtual?
+