Skip to content

Commit b9ef1da

Browse files
committed
Add agents to navbar
1 parent 5451e24 commit b9ef1da

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

  • packages/web/src/app/(app)/@sidebar/components/defaultSidebar

packages/web/src/app/(app)/@sidebar/components/defaultSidebar/nav.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
SidebarMenuButton,
66
SidebarMenuItem,
77
} from "@/components/ui/sidebar";
8-
import { BookMarkedIcon, type LucideIcon, MessageCircleIcon, MessagesSquareIcon, SearchIcon, SettingsIcon } from "lucide-react";
8+
import { BookMarkedIcon, BotIcon, type LucideIcon, MessageCircleIcon, MessagesSquareIcon, SearchIcon, SettingsIcon } from "lucide-react";
99
import { usePathname } from "next/navigation";
1010
import { HomeView } from "@/hooks/useHomeView";
1111
import { NotificationDot } from "../../../components/notificationDot";
@@ -81,6 +81,13 @@ export function Nav({
8181
icon: BookMarkedIcon,
8282
key: "repos"
8383
},
84+
{
85+
title: "Agents",
86+
href: "/agents",
87+
icon: BotIcon,
88+
key: "agents",
89+
requiresAuth: true
90+
},
8491
{
8592
title: "Settings",
8693
href: "/settings",

0 commit comments

Comments
 (0)