From 667e84aa3069d904f614c65cfdce0b382f1353f0 Mon Sep 17 00:00:00 2001 From: Tetardtek Date: Sat, 21 Mar 2026 17:56:16 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20template=20UI=20=E2=80=94=20onglets=20o?= =?UTF-8?q?wner=20disabled=20avec=20label=20'soon'=20+=20tooltip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- brain-ui/src/App.tsx | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/brain-ui/src/App.tsx b/brain-ui/src/App.tsx index a09c295..a489967 100644 --- a/brain-ui/src/App.tsx +++ b/brain-ui/src/App.tsx @@ -23,6 +23,7 @@ interface NavItem { icon: string label: string separator?: boolean + disabled?: boolean } interface PendingGate { @@ -32,7 +33,11 @@ interface PendingGate { } const NAV_ITEMS: NavItem[] = [ - { id: 'cosmos', icon: '🌌', label: 'Cosmos' }, + { id: 'workflows', icon: '🔀', label: 'Workflows', disabled: true }, + { id: 'builder', icon: '⚡', label: 'Nouveau', disabled: true }, + { id: 'secrets', icon: '🔑', label: 'Secrets', disabled: true }, + { id: 'infra', icon: '🖥️', label: 'Infra', disabled: true }, + { id: 'cosmos', icon: '🌌', label: 'Cosmos', separator: true }, ] function AppInner() { @@ -141,10 +146,19 @@ function AppInner() {
)}
)