diff --git a/apps/web/src/components/app-shell.tsx b/apps/web/src/components/app-shell.tsx index fd2a02f..8636e49 100644 --- a/apps/web/src/components/app-shell.tsx +++ b/apps/web/src/components/app-shell.tsx @@ -9,8 +9,9 @@ import { useSessions } from "../state/sessions"; import { Icon } from "./icon"; import type { IconName } from "../utils/icons"; -const NAV_ITEMS: { to: string; label: string; icon: IconName }[] = [ +const NAV_ITEMS: { to: string; label: string; icon: IconName; badge?: "sessions" }[] = [ { to: "/", label: "Home", icon: "dashboard" }, + { to: "/sessions", label: "Sessions", icon: "terminal", badge: "sessions" }, { to: "/projects", label: "Projects", icon: "projects" }, { to: "/tool-workshop", label: "Tool Workshop", icon: "settings" }, { to: "/settings", label: "Settings", icon: "settings" } @@ -83,7 +84,6 @@ export const AppShell = () => {