diff --git a/apps/web/app/(dashboard)/layout.tsx b/apps/web/app/(dashboard)/layout.tsx index 4870426d..e20cf58b 100644 --- a/apps/web/app/(dashboard)/layout.tsx +++ b/apps/web/app/(dashboard)/layout.tsx @@ -6,16 +6,16 @@ import { Inbox, ListTodo, Bot, - Columns3, - Settings, + BookOpen, + ChevronDown, } from "lucide-react"; +import { MulticaIcon } from "@multica/ui/components/multica-icon"; const navItems = [ { href: "/inbox", label: "Inbox", icon: Inbox }, - { href: "/issues", label: "Issues", icon: ListTodo }, - { href: "/board", label: "Board", icon: Columns3 }, { href: "/agents", label: "Agents", icon: Bot }, - { href: "/settings", label: "Settings", icon: Settings }, + { href: "/issues", label: "Issues", icon: ListTodo }, + { href: "/knowledge-base", label: "Knowledge Base", icon: BookOpen }, ]; export default function DashboardLayout({ @@ -26,26 +26,34 @@ export default function DashboardLayout({ const pathname = usePathname(); return ( -
- {/* Sidebar */} -