diff --git a/apps/console/src/components/AppSidebar.tsx b/apps/console/src/components/AppSidebar.tsx index 20e0685d3..ac88b8615 100644 --- a/apps/console/src/components/AppSidebar.tsx +++ b/apps/console/src/components/AppSidebar.tsx @@ -8,6 +8,7 @@ import { LifeBuoy, Send, Settings, + Building, } from "lucide-react"; import { graphql, @@ -43,14 +44,21 @@ const staticData = { icon: BookOpen, }, { - title: "Peoples", - url: "/peoples", - icon: Users, - }, - { - title: "Vendors", - url: "/vendors", - icon: ToyBrick, + title: "Organizations", + icon: Building, + isActive: true, + items: [ + { + title: "Peoples", + url: "/peoples", + icon: Users, + }, + { + title: "Vendors", + url: "/vendors", + icon: ToyBrick, + }, + ] }, { title: "Settings", diff --git a/apps/console/src/components/NavMain.tsx b/apps/console/src/components/NavMain.tsx index 39c2ecdaa..9b825cdcf 100644 --- a/apps/console/src/components/NavMain.tsx +++ b/apps/console/src/components/NavMain.tsx @@ -25,7 +25,7 @@ export function NavMain({ }: { items: { title: string; - url: string; + url?: string; icon: LucideIcon; isActive?: boolean; items?: {