diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index 49495e4..0ac92bf 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -25,6 +25,7 @@ import { Archive as ArchiveIcon, BarChart3, CalendarClock, + Wallet, } from "lucide-react"; import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; @@ -62,6 +63,7 @@ const NAV: NavItem[] = (() => { { to: "/reports", label: "Reports", icon: BarChart3 }, { to: "/status", label: "Status Updates", icon: Activity }, { to: "/tasks", label: "Tasks", icon: CheckSquare }, + { to: "/trust", label: "Trust", icon: Wallet }, ].sort((a, b) => a.label.localeCompare(b.label)); const bottom: NavItem[] = [ { to: "/archive", label: "Archive", icon: ArchiveIcon },