aef8791151
- Added Appshell component with responsive navbar and main content area - Integrated ColorSchemeToggle for light/dark mode switching - Created Welcome component with styled title and introductory text - Developed ChatPage for LLM interaction with WebSocket support - Implemented Biblioteca for managing notes with rich text editor - Added LoginPage for user authentication with error handling - Introduced MessageList and MessageBubble components for chat messages - Styled components with CSS modules for consistent design
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
// src/data/submenuLinks.ts
|
|
|
|
import { Biblioteca } from "@/frontend_domains/TextEditor/Biblioteca";
|
|
|
|
export const submenuLinks = {
|
|
|
|
// Home Principal
|
|
|
|
Home: [
|
|
{ label: 'Inicio', to: '/' },
|
|
|
|
],
|
|
|
|
// Biblioteca
|
|
|
|
Biblioteca: [
|
|
{ label: 'Biblioteca', to: '/bibliot/Biblioteca' },
|
|
{ label: 'test', to: '/bibliot/editortest' },
|
|
|
|
],
|
|
|
|
|
|
|
|
// Experimentos
|
|
Experimentos: [
|
|
{ label: 'Consulta Api', to: '/experiments/Consulta_API' },
|
|
{ label: 'Visualizaciones_Random', to: '/experiments/Visualizaciones_Random' },
|
|
{ label: 'Grid_Dashboard', to: '/experiments/Grid_Dashboard' },
|
|
],
|
|
|
|
// Camara
|
|
CameraNoir: [
|
|
{ label: 'Camara_principal', to: '/camara/principal' },
|
|
],
|
|
|
|
// LLms
|
|
|
|
AgentesLLMs: [
|
|
{ label: 'LLMs', to: '/llms' },
|
|
{ label: 'Chat', to: '/llms/chat' },
|
|
{ label: 'Documentos', to: '/llms/documentos' },
|
|
|
|
|
|
],
|
|
|
|
// Settings
|
|
Settings: [
|
|
{ label: 'Preferencias', to: '/settings/preferencias' },
|
|
{ label: 'Notificaciones', to: '/settings/notificaciones' },
|
|
],
|
|
}; |