From ccbebe172dd9d6c1bbd8c0e017181560940da25a Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Sat, 23 May 2026 10:54:36 -0400 Subject: [PATCH] feat(shell): add Dashboard nav entry; swap fake "D" mark for real logo The sidebar header used a gradient "D" tile as a placeholder. Now it uses the actual dragon-coiled-D logo so the brand reads consistently between the launcher hero and the chrome. Also adds a 'Dashboard' nav item directly under 'Home' so the operations view is one click away. --- services/web-ui/public/shell.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/web-ui/public/shell.jsx b/services/web-ui/public/shell.jsx index d777fca..a369108 100644 --- a/services/web-ui/public/shell.jsx +++ b/services/web-ui/public/shell.jsx @@ -2,6 +2,7 @@ const NAV_TREE = [ { id: "home", label: "Home", icon: "home" }, + { id: "dashboard", label: "Dashboard", icon: "library" }, { id: "library", label: "Library", icon: "library" }, { id: "projects", label: "Projects", icon: "folder" }, { @@ -96,8 +97,8 @@ function Sidebar({ active, onNavigate }) { return (