feat(ui): logs page, mein konto, remove settings/api-docs from topbar, accent hamburger, api docs in help

This commit is contained in:
Agent Zero
2026-08-17 13:07:30 +02:00
parent c3cc19da10
commit 30c2e2d7c8
6 changed files with 173 additions and 38 deletions
+4 -6
View File
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
import { NavLink, Outlet, useParams } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { useUIStore } from '@/store/uiStore';
import { ChevronRight, ChevronDown, BookOpen, Users, Calendar, Mail, FolderOpen, Settings, Shield, Zap, Bot, ArrowLeft } from 'lucide-react';
import { ChevronRight, ChevronDown, BookOpen, Users, Calendar, Mail, FolderOpen, Settings, Shield, Zap, Bot, ArrowLeft, Code } from 'lucide-react';
interface HelpNode {
title: string;
@@ -75,12 +75,10 @@ const HELP_TREE: HelpNode[] = [
],
},
{
title: 'Automation & KI',
icon: <Bot className="w-4 h-4" />,
title: 'Entwicklung',
icon: <Code className="w-4 h-4" />,
children: [
{ title: 'KI-Assistent', path: '/help/ai-assistant' },
{ title: 'Workflows', path: '/help/workflows' },
{ title: 'Automation', path: '/help/automation' },
{ title: 'API Dokumentation', path: '/help/api-docs' },
],
},
];