diff --git a/src/components/app-shell.tsx b/src/components/app-shell.tsx index a8c771a..fc9f5ad 100644 --- a/src/components/app-shell.tsx +++ b/src/components/app-shell.tsx @@ -22,6 +22,7 @@ import { User as UserIcon, Inbox as InboxIcon, CreditCard, + Archive as ArchiveIcon, } from "lucide-react"; import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; @@ -43,6 +44,7 @@ const NAV: NavItem[] = (() => { const dashboard: NavItem = { to: "/", label: "Dashboard", icon: LayoutDashboard }; const rest: NavItem[] = [ { to: "/admin/users", label: "Users", icon: ShieldCheck, adminOnly: true }, + { to: "/archive", label: "Archive", icon: ArchiveIcon }, { to: "/calendar", label: "Calendar", icon: CalendarIcon }, { to: "/cases", label: "Cases", icon: Briefcase }, { to: "/clients", label: "Clients", icon: Users },