This commit is contained in:
SirRobert-1 2025-05-07 08:40:33 -06:00
commit b57e880456
2 changed files with 10 additions and 2 deletions
diplomas/src

View File

@ -52,6 +52,15 @@ const data = {
}, },
], ],
}, },
{
title: "Competencias",
items: [
{
title: "Vista de competencias",
url: "/competenciasVista",
}
],
},
{ {
title: "Diplomas", title: "Diplomas",
items: [ items: [
@ -61,6 +70,7 @@ const data = {
}, },
], ],
}, },
], ],
}; };

View File

@ -105,7 +105,6 @@ export default function CursosVista() {
<table className="min-w-full bg-white border"> <table className="min-w-full bg-white border">
<thead> <thead>
<tr className="bg-gray-100"> <tr className="bg-gray-100">
<th className="py-2 border-b">ID</th>
<th className="py-2 border-b">Nombre</th> <th className="py-2 border-b">Nombre</th>
<th className="py-2 border-b">Descripción</th> <th className="py-2 border-b">Descripción</th>
<th className="py-2 border-b">Horas</th> <th className="py-2 border-b">Horas</th>
@ -164,7 +163,6 @@ export default function CursosVista() {
</tr> </tr>
) : ( ) : (
<tr key={curso.id}> <tr key={curso.id}>
<td className="py-2 px-4 border-b">{curso.id}</td>
<td className="py-2 px-4 border-b">{curso.nombre}</td> <td className="py-2 px-4 border-b">{curso.nombre}</td>
<td className="py-2 px-4 border-b">{curso.descripcion}</td> <td className="py-2 px-4 border-b">{curso.descripcion}</td>
<td className="py-2 px-4 border-b">{curso.horas}</td> <td className="py-2 px-4 border-b">{curso.horas}</td>