{visibleNavItems.map((item) => (
{item.icon}
{item.label}
))}
{showManagerSection && (
<>
{showAdmin ? "Admin" : "Management"}
{showAdmin && adminNavItems.map((item) => (
{item.icon}
{item.label}
))}
{managerNavItems.map((item) => (
{item.icon}
{item.label}
))}
>
)}
{/* Bottom actions */}