diff --git a/diplomas/src/components/app-sidebar.jsx b/diplomas/src/components/app-sidebar.jsx
index d290e46..f5f4687 100644
--- a/diplomas/src/components/app-sidebar.jsx
+++ b/diplomas/src/components/app-sidebar.jsx
@@ -52,6 +52,15 @@ const data = {
         },
       ],
     },
+    {
+      title: "Competencias",
+      items: [
+        {
+          title: "Vista de competencias",
+          url: "/competenciasVista",
+        }
+      ],
+    },
     {
       title: "Diplomas",
       items: [
@@ -61,6 +70,7 @@ const data = {
         },
       ],
     },
+
   ],
 };
 
diff --git a/diplomas/src/pages/cursosVista.jsx b/diplomas/src/pages/cursosVista.jsx
index 47df870..1c04fc4 100644
--- a/diplomas/src/pages/cursosVista.jsx
+++ b/diplomas/src/pages/cursosVista.jsx
@@ -105,7 +105,6 @@ export default function CursosVista() {
         <table className="min-w-full bg-white border">
           <thead>
             <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">Descripción</th>
               <th className="py-2 border-b">Horas</th>
@@ -164,7 +163,6 @@ export default function CursosVista() {
                 </tr>
               ) : (
                 <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.descripcion}</td>
                   <td className="py-2 px-4 border-b">{curso.horas}</td>