diff --git a/app/ActivosMantenimiento/page.tsx b/app/ActivosMantenimiento/page.tsx index 39bdb85..ec94896 100644 --- a/app/ActivosMantenimiento/page.tsx +++ b/app/ActivosMantenimiento/page.tsx @@ -5,10 +5,121 @@ import Toggle from "../Components/Toggle/Toggle"; // Assuming you will create this new component export default function Page() { - return ( -
-

ACTIVOS Y EN MANTENIMIENTO

+ const [tiempo, setTiempo] = useState(""); + const [selectedTable, setSelectedTable] = useState(null); + return ( +
+

EQUIPOS ACTIVOS Y EN MANTENIMIENTO

+ +
+ {/* Toggle component for 'Asignar' and 'Liberar' tabs */} + + + +
+ +
+ + +
+
+ + ), + }, + { + key: "Areas", + label: "Areas", + content: ( + <> +
+ +
+ +
+ + +
+ +
+
+ + ), + }, + { + key: "Mesas", + label: "Liberar mesa", + content: ( + <> +
+ +
+ +
+ + +
+ +
+
+ + ), + }, + ]} + /> + + {/* This is the new component to display available tables */} +
); } diff --git a/app/Components/BarNavigation/BarNavigation.css b/app/Components/BarNavigation/BarNavigation.css index 79f0bc2..f82e516 100644 --- a/app/Components/BarNavigation/BarNavigation.css +++ b/app/Components/BarNavigation/BarNavigation.css @@ -2,6 +2,7 @@ text-align: center; background-color: rgb(1, 92, 184); padding: 0 20px; + display: flex; } .barNavigation ul { @@ -91,6 +92,7 @@ align-items: center; justify-content: center; color: rgb(255, 255, 255); + font-size: 1.5rem; } .containerLinks { @@ -105,6 +107,11 @@ color: white; width: 100%; height: 100%; + font-size: 1.5rem; +} + +thead,tbody{ + font-size: 1.25rem; } @media (max-width: 800px) { @@ -118,10 +125,12 @@ .menuToggle.center { align-items: center; + margin: 0; } .barNavigation { font-size: 15px; + display: block; } .barNavigation ul { @@ -140,7 +149,7 @@ } .barNavigation li:hover { - background-color: rgba(0, 61, 121, 1); + background-color: #d59f0f; color: white; border-radius: 0; border: none; @@ -152,5 +161,9 @@ position: relative; background-color: rgba(0, 61, 121, 1); } + + thead,tbody{ + font-size: 1rem; + } } \ No newline at end of file diff --git a/app/Components/BarNavigation/BarNavigation.tsx b/app/Components/BarNavigation/BarNavigation.tsx index 27e2b16..a0a60ae 100644 --- a/app/Components/BarNavigation/BarNavigation.tsx +++ b/app/Components/BarNavigation/BarNavigation.tsx @@ -14,7 +14,7 @@ function BarNavigation() { return (