initial commit

This commit is contained in:
cubecraft-agents[bot]
2026-04-25 19:02:57 +00:00
commit f490098af6
60 changed files with 11934 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// ============================================================================
// Navigation Model
// Per spec Section 3.5: Global Navigation Structure
// ============================================================================
export interface NavDestination {
label: string;
icon: string;
route: string;
badge?: number;
}
export const NAV_DESTINATIONS: NavDestination[] = [
{ label: 'Command Hub', icon: 'bolt', route: '/hub' },
{ label: 'Projects', icon: 'assignment', route: '/projects' },
{ label: 'Sessions', icon: 'folder_open', route: '/sessions' },
{ label: 'Logs', icon: 'bar_chart', route: '/logs' },
{ label: 'Settings', icon: 'settings', route: '/settings' },
];