import type { NavSection } from '$lib/types/layout'; export const navigationSections: NavSection[] = [ { title: 'PLANNING', items: [ { label: 'Dashboard', href: '/dashboard', icon: 'LayoutDashboard' }, { label: 'Planning', href: '/planning', icon: 'CalendarCheck' }, { label: 'Team Members', href: '/team-members', icon: 'Users' }, { label: 'Projects', href: '/projects', icon: 'Folder' }, { label: 'Allocations', href: '/allocations', icon: 'Calendar' }, { label: 'Actuals', href: '/actuals', icon: 'CheckCircle' }, { label: 'Capacity', href: '/capacity', icon: 'Gauge' } ] }, { title: 'REPORTS', items: [ { label: 'Forecast', href: '/reports/forecast', icon: 'TrendingUp' }, { label: 'Utilization', href: '/reports/utilization', icon: 'BarChart3' }, { label: 'Costs', href: '/reports/costs', icon: 'DollarSign' }, { label: 'Variance', href: '/reports/variance', icon: 'AlertTriangle' }, { label: 'Allocation Matrix', href: '/reports/allocation', icon: 'Grid3X3' } ] }, { title: 'ADMIN', roles: ['superuser'], items: [ { label: 'Settings', href: '/settings', icon: 'Settings' }, { label: 'Master Data', href: '/master-data', icon: 'Database' } ] } ];