/// export type MenuItem = { title: string; link: string; icon: JSX.Element; selected?: (pathname: string) => boolean; }; export type SidebarProps = { projectName: string; projectDescription: string; projectIcon: JSX.Element; menuItems: (MenuItem | "divider")[]; onLogout?: () => void; };