Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | import {
Settings,
Activity,
Brain,
Database,
Play,
Route,
Bot,
Building2,
Clock,
CreditCard
} from 'lucide-react'
// Navigation sections for backoffice
export const backofficeNavigation = [
{
title: 'Système',
color: 'gray',
items: [
{ name: 'Organisation', href: 'organization', icon: Building2 },
{ name: 'Abonnement', href: 'subscription', icon: CreditCard },
{ name: 'Planifications', href: 'schedules', icon: Clock },
{ name: 'Jobs', href: 'jobs', icon: Activity },
{ name: 'Configuration', href: 'settings', icon: Settings },
]
},
{
title: 'Acquisition',
color: 'indigo',
items: [
{ name: 'Crawlers', href: 'crawlers', icon: Play },
{ name: 'Workflows', href: 'workflows', icon: Brain },
]
},
{
title: 'Connaissance',
color: 'green',
items: [
{ name: 'Knowledge Routers', href: 'knowledge-routers', icon: Route },
{ name: 'Knowledge Bases', href: 'knowledge', icon: Database },
]
},
{
title: 'Agents RAG',
color: 'purple',
items: [
{ name: 'Agents', href: 'agents', icon: Bot },
]
},
] |