diff --git a/app/(private)/InformacionEquipo/page.tsx b/app/(private)/InformacionEquipo/page.tsx index a477682..0e7ab86 100644 --- a/app/(private)/InformacionEquipo/page.tsx +++ b/app/(private)/InformacionEquipo/page.tsx @@ -27,11 +27,24 @@ export default function Page() { - + - - +
diff --git a/app/(private)/Programas/page.tsx b/app/(private)/Programas/page.tsx index b6a9f29..1419f31 100644 --- a/app/(private)/Programas/page.tsx +++ b/app/(private)/Programas/page.tsx @@ -5,7 +5,11 @@ import styleprograms from "./programas.module.css"; export default function Page() { const [Editar, setEditar] = useState(true); + const [Nuevo, setNuevo] = useState(true); + const handleNuevo = () => { + setNuevo(false); + }; const handleEditar = () => { setEditar(false); }; @@ -26,7 +30,10 @@ export default function Page() { -
@@ -51,6 +58,25 @@ export default function Page() { )} + + {!Nuevo && ( +
+ + setUser(e.target.value)} + placeholder="Coloca " + /> +
+ + + +
+
+ )} ); } diff --git a/app/globals.css b/app/globals.css index e6b8b5a..e496ac0 100644 --- a/app/globals.css +++ b/app/globals.css @@ -364,6 +364,12 @@ table tr { justify-content: center; align-items: center; } +.centerGrido { + display: grid; + grid-template-columns: auto 200px; + justify-content: center; + align-items: center; +} .impressions-title { font-size: 1.75rem; diff --git a/app/not-found.tsx b/app/not-found.tsx index 03e157a..6e292db 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,4 +1,4 @@ -'use client' +"use client"; import { useRouter } from "next/navigation"; @@ -11,18 +11,15 @@ export default function NotFound() { return (
- Página no encontrada + Página no encontrada + {/* Título */}

404 - Página no encontrada

+ {/* Texto */}

Lo sentimos, la página que buscas no existe.

Por favor, verifica la URL o regresa a la página principal.

- +
); }