feat(agents): own agents page with tree sidebar in StartLayout, like settings/help

This commit is contained in:
Agent Zero
2026-08-17 11:46:08 +02:00
parent cbb17c4ddd
commit 7c6f33983d
5 changed files with 173 additions and 3 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ export function StartPage() {
const menuItems = [
{ id: 'workspaces', label: 'Workspaces', icon: <LayoutGrid className="w-4 h-4" />, active: true },
{ id: 'settings', label: 'Einstellungen', icon: <Settings className="w-4 h-4" />, onClick: () => navigate('/settings') },
{ id: 'agents', label: 'Agenten', icon: <Bot className="w-4 h-4" />, onClick: () => navigate('/agents') },
{ id: 'agents', label: 'Agenten', icon: <Bot className="w-4 h-4" />, onClick: () => navigate('/agents/overview') },
{ id: 'help', label: 'Hilfe', icon: <HelpCircle className="w-4 h-4" />, onClick: () => navigate('/help/welcome') },
];