import React from 'react' const NAV_ITEMS = [ { id: 'dashboard', label: 'Dashboard', icon: '⬡', badge: null }, { id: 'trip-tracker', label: 'Trip Tracker', icon: '♥', badge: '3' }, { id: 'schedule', label: 'Schedule', icon: '◷', badge: null }, { id: 'providers', label: 'Providers', icon: '✦', badge: null }, { id: 'rooms', label: 'Rooms', icon: '▣', badge: null }, { id: 'reports', label: 'Reports', icon: '◈', badge: null }, ] const BOTTOM_ITEMS = [ { id: 'notifications', label: 'Notifications', icon: '◉', badge: '5' }, { id: 'settings', label: 'Settings', icon: '⚙', badge: null }, ] /** * Sidebar — primary navigation for CTM Concierge. * @param {string} activePage — the currently active page id (owned by App) * @param {function} onNavigate — callback to change the active page */ export default function Sidebar({ activePage, onNavigate }) { return ( ) }