From 8f26f1bd9a868fd23dd3c049b77404cc01719e47 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Fri, 29 May 2026 20:17:42 -0400 Subject: [PATCH] ui(web-ui): Projects above Library in nav + $ icon for Billing - Reorder the Workspace nav group so Projects sits above Library. - Add a lucide-style `dollar` icon and use it for the Billing nav item (was borrowing the `token` key icon). Co-Authored-By: Claude Opus 4.8 --- services/web-ui/public/icons.jsx | 1 + services/web-ui/public/shell.jsx | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/services/web-ui/public/icons.jsx b/services/web-ui/public/icons.jsx index 8398e36..ebeca6f 100644 --- a/services/web-ui/public/icons.jsx +++ b/services/web-ui/public/icons.jsx @@ -12,6 +12,7 @@ const ICONS = { editor: <>, users: <>, token: <>, + dollar: <>, container: <>, cluster: <>, settings: <>, diff --git a/services/web-ui/public/shell.jsx b/services/web-ui/public/shell.jsx index d934e80..2fb2685 100644 --- a/services/web-ui/public/shell.jsx +++ b/services/web-ui/public/shell.jsx @@ -10,8 +10,8 @@ const NAV_SECTIONS = [ items: [ { id: "home", label: "Home", icon: "home" }, { id: "dashboard", label: "Dashboard", icon: "layout" }, - { id: "library", label: "Library", icon: "library" }, { id: "projects", label: "Projects", icon: "folder" }, + { id: "library", label: "Library", icon: "library" }, ], }, { @@ -36,7 +36,7 @@ const NAV_SECTIONS = [ items: [ { id: "users", label: "Users", icon: "users" }, { id: "tokens", label: "Tokens", icon: "token" }, - { id: "billing", label: "Billing", icon: "token" }, + { id: "billing", label: "Billing", icon: "dollar" }, { id: "containers", label: "Containers", icon: "container" }, { id: "cluster", label: "Cluster", icon: "cluster" }, { id: "settings", label: "Settings", icon: "settings" },