From 1c717e82fc2da9a362b8d844e6e13a3859da6236 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 17:55:17 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/app-shell.tsx | 2 ++ 1 file changed, 2 insertions(+) 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 },