Skip to content

Commit db67d85

Browse files
committed
web: rename Inbox nav label to Sources and surface Notifs higher
The /sources route shows raw sync-source feeds (Gmail, GitHub, Telegram). Labeling it "Inbox" in the nav rail collided with the notifications inbox concept that lives at /notifications, which made it harder to find. Renaming to "Sources" matches the route URL and removes the collision. Also move the Notifs item up next to Chat so the actionable surface sits at the top of the rail.
1 parent e3a58f6 commit db67d85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/src/components/Layout/NavRail.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import { ThemeToggle } from './ThemeToggle';
99

1010
const NAV_ITEMS = [
1111
{ path: '/chat', icon: MessageSquare, label: 'Chat' },
12+
{ path: '/notifications', icon: Bell, label: 'Notifs' },
1213
{ path: '/files', icon: FolderOpen, label: 'Files' },
1314
{ path: '/tasks', icon: CheckSquare, label: 'Tasks' },
1415
{ path: '/plans', icon: Lightbulb, label: 'Plans' },
1516
{ path: '/skills', icon: Sparkles, label: 'Skills' },
1617
{ path: '/mcp', icon: Plug, label: 'MCP' },
1718
{ path: '/houseofagents', icon: Users, label: 'HoA', feature: 'hoa' as const },
18-
{ path: '/notifications', icon: Bell, label: 'Notifs' },
19-
{ path: '/sources', icon: Inbox, label: 'Inbox' },
19+
{ path: '/sources', icon: Inbox, label: 'Sources' },
2020
{ path: '/cron', icon: Clock, label: 'Cron' },
2121
{ path: '/memory', icon: Brain, label: 'Memory' },
2222
{ path: '/diagnostics', icon: Activity, label: 'Diag' },

0 commit comments

Comments
 (0)