feat: ocultar vista de Configuración del menú de navegación

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-30 10:18:10 -05:00
parent ae8975bf5a
commit 6225e16741
2 changed files with 1 additions and 7 deletions

View File

@ -29,10 +29,6 @@
<span class="material-symbols-outlined text-[20px]">auto_fix_high</span>
<span class="text-sm font-medium">Generar</span>
</router-link>
<router-link to="/settings" class="flex items-center gap-3 px-3 py-2.5 text-[#c7c4d7] hover:text-white hover:bg-white/5 transition-all duration-200 group relative" active-class="bg-white/10 !text-white rounded-lg font-semibold">
<span class="material-symbols-outlined text-[20px]">settings</span>
<span class="text-sm font-medium">Configuración</span>
</router-link>
</nav>
<!-- Acción principal -->

View File

@ -5,7 +5,6 @@ import AnalysisDetailView from '../views/AnalysisDetailView.vue'
import AnalysisListView from '../views/AnalysisListView.vue'
import ScriptsView from '../views/ScriptsView.vue'
import GenerateView from '../views/GenerateView.vue'
import SettingsView from '../views/SettingsView.vue'
const routes = [
{
@ -40,8 +39,7 @@ const routes = [
},
{
path: '/settings',
name: 'Settings',
component: SettingsView
redirect: '/'
}
]