mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-22 17:49:48 +02:00
* feat(sidebar): redesign sidebar layout for better space usage and grouping - Split header into two rows: workspace switcher (full width) + search bar with new issue button - Regroup navigation: Personal (Inbox, My Issues) + Workspace with label (Issues, Projects, Agents, Runtimes, Skills) - Move Settings to SidebarFooter (like Linear) - Search now renders as a full-width input-style button with ⌘K hint Closes MUL-441 * fix(sidebar): style ⌘K shortcut as bordered badge matching project conventions Use bordered kbd badge (bg-muted, border, font-mono) consistent with search-command.tsx pattern. Render ⌘ symbol slightly larger for readability. * feat(sidebar): add user profile info to footer Show user avatar, name and email at the bottom of the sidebar with a dropdown menu for logout, similar to the Lumis reference design. * refactor(sidebar): move Settings back to Workspace nav, footer shows only user info Settings is a navigable page that belongs with other nav items. Footer now cleanly separates identity (user profile) from navigation. * refactor(sidebar): split Workspace into Workspace + Configure groups Split 6-item Workspace group into two cleaner groups: - Workspace: Issues, Projects, Agents (core collaboration) - Configure: Runtimes, Skills, Settings (infrastructure/admin) * fix(sidebar): align search bar with nav items Remove extra px-2 from search container and change button px-2.5 to px-2 so the search icon aligns at the same left offset as nav item icons. * refactor(sidebar): make search and new issue regular menu items Replace bordered input-style search bar and icon button with SidebarMenuButton components so they share the same visual weight, padding, and hover behavior as all other nav items.