import { type DashboardSection, routes } from "./routes"; export interface NavRailProps { activeSection: DashboardSection; onSectionChange: (section: DashboardSection) => void; className?: string; } export function NavRail({ activeSection, onSectionChange, className = "" }: NavRailProps) { return ( ); }