feat(ui): logs page, mein konto, remove settings/api-docs from topbar, accent hamburger, api docs in help
This commit is contained in:
@@ -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' },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user