diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx index 855a8ed1..d7735117 100644 --- a/src/components/layout/Navigation.tsx +++ b/src/components/layout/Navigation.tsx @@ -1,5 +1,5 @@ import { Link, useLocation } from 'react-router-dom'; -import { Home, Settings, Zap, Network, Activity, Users, MessageSquare, Globe, Plus } from 'lucide-react'; +import { Home, Settings, Zap, Network, Activity, Users, MessageSquare, Globe, Plus, Shield } from 'lucide-react'; export function Navigation() { const location = useLocation(); @@ -8,6 +8,7 @@ export function Navigation() { { path: '/', label: 'Головна', icon: Home }, { path: '/console', label: 'Console', icon: Settings }, { path: '/nodes', label: 'НОДИ', icon: Network }, + { path: '/governance', label: 'GOVERNANCE', icon: Shield }, { path: '/space', label: 'КОСМОС', icon: Zap }, { path: '/network', label: 'МЕРЕЖА', icon: Globe }, { path: '/connect-node', label: 'ПІДКЛЮЧИТИ', icon: Plus }, diff --git a/src/features/agentHub/AgentCabinet.tsx b/src/features/agentHub/AgentCabinet.tsx index c4f560d7..9edc3413 100644 --- a/src/features/agentHub/AgentCabinet.tsx +++ b/src/features/agentHub/AgentCabinet.tsx @@ -6,6 +6,7 @@ import { VisibilityCard } from './components/VisibilityCard'; import { AgentChatWidget } from './components/AgentChatWidget'; import { MicroDaoWizard } from './components/MicroDaoWizard'; import { GovernanceLevelBadge } from '../governance/components/GovernanceLevelBadge'; +import { ReportButton } from '../governance/components/ReportButton'; import { governanceApi } from '../../api/governance'; import { GOV_LEVEL_LABELS, POWER_LABELS } from '../../types/governance'; import type { AgentGovLevel, GovernancePower } from '../../types/governance'; @@ -104,7 +105,14 @@ export function AgentCabinet() {