diff --git a/frontend/src/features/home/pages/HomePage.vue b/frontend/src/features/home/pages/HomePage.vue index caf99817..7bb16049 100644 --- a/frontend/src/features/home/pages/HomePage.vue +++ b/frontend/src/features/home/pages/HomePage.vue @@ -3,37 +3,64 @@ import { RouterLink } from 'vue-router' interface Module { name: string - screens: Array<{ label: string; path: string }> + icon: string + description: string + screens: Array<{ label: string; path: string; icon: string }> } const modules: Module[] = [ { name: 'Model Operations', + icon: '🤖', + description: 'Manage models, run shadow tests, and track performance', screens: [ - { label: 'Shadow Run Queue', path: '/shadow-run' }, - { label: 'Model List', path: '/models' }, + { label: 'Shadow Run Queue', path: '/model-ops/shadow-run-jobs', icon: '⚡' }, + { label: 'Model List', path: '/model-ops/models-master', icon: '📊' }, ], }, { name: 'Governance', - screens: [{ label: 'Approval Queue', path: '/approvals' }], + icon: '⚖️', + description: 'Approval workflows and compliance management', + screens: [{ label: 'Approval Queue', path: '/governance/approvals', icon: '✅' }], }, ]