diff --git a/app/components/layout/app-shell.tsx b/app/components/layout/app-shell.tsx index b25fa1a..d6c440d 100644 --- a/app/components/layout/app-shell.tsx +++ b/app/components/layout/app-shell.tsx @@ -33,7 +33,11 @@ import { Megaphone, AlertOctagon, SearchCode, - ChevronRight, + ChevronDown, + Database, + Plug, + MessageSquare, + Eye, // CREMA:NAV-ICONS } from "lucide-react" @@ -102,6 +106,7 @@ type NavItem = { type NavGroup = { key: string label: string + icon: React.ComponentType<{ className?: string }> items: NavItem[] } @@ -119,6 +124,7 @@ const navGroups: NavGroup[] = [ { key: "tenancy", label: "Tenancy", + icon: Building2, items: [ { to: "/tenants", icon: Building2, label: "Tenants" }, { to: "/memberships", icon: UserCheck, label: "Memberships" }, @@ -129,6 +135,7 @@ const navGroups: NavGroup[] = [ { key: "data", label: "Data", + icon: Database, items: [ { to: "/storage", icon: HardDrive, label: "Storage" }, { to: "/buckets", icon: Boxes, label: "Buckets" }, @@ -138,6 +145,7 @@ const navGroups: NavGroup[] = [ { key: "integrations", label: "Integrations", + icon: Plug, items: [ { to: "/webhooks", icon: WebhookIcon, label: "Webhooks" }, { to: "/scheduled-tasks", icon: CalendarClock, label: "Scheduled" }, @@ -147,6 +155,7 @@ const navGroups: NavGroup[] = [ { key: "comms", label: "Communications", + icon: MessageSquare, items: [ { to: "/announcements", icon: Megaphone, label: "Announcements" }, { to: "/status-page", icon: AlertOctagon, label: "Status page" }, @@ -155,6 +164,7 @@ const navGroups: NavGroup[] = [ { key: "observability", label: "Observability", + icon: Eye, items: [ { to: "/monitoring", icon: Gauge, label: "Monitoring" }, { to: "/activity", icon: Activity, label: "Audit log" }, @@ -163,6 +173,7 @@ const navGroups: NavGroup[] = [ { key: "ai", label: "AI & Search", + icon: Sparkles, items: [ { to: "/ai", icon: Bot, label: "AI" }, { to: "/search", icon: SearchCode, label: "Search" }, @@ -332,22 +343,24 @@ export function AppShell({ {navGroups.map((group) => { const isOpen = !!openGroups[group.key] + const GroupIcon = group.icon return ( -