From 2da9fe03731e77b5704603a8cf280b98e4d7cf80 Mon Sep 17 00:00:00 2001 From: Jason Staack Date: Sat, 21 Mar 2026 14:41:11 -0500 Subject: [PATCH] feat(ui): add Certificates and VPN back to sidebar low-frequency section These were removed during the Operate/Act restructure but are standalone management pages that need direct nav access. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/layout/Sidebar.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/components/layout/Sidebar.tsx b/frontend/src/components/layout/Sidebar.tsx index 519d950..5861843 100644 --- a/frontend/src/components/layout/Sidebar.tsx +++ b/frontend/src/components/layout/Sidebar.tsx @@ -19,6 +19,8 @@ import { BellRing, Calendar, FileBarChart, + ShieldCheck, + KeyRound, Sun, Moon, LogOut, @@ -168,6 +170,8 @@ export function Sidebar() { ...(tenantAdmin && user?.tenant_id ? [{ label: 'Users', href: `/tenants/${user.tenant_id}/users`, icon: Users }] : []), + { label: 'Certificates', href: '/certificates', icon: ShieldCheck }, + { label: 'VPN', href: '/vpn', icon: KeyRound }, { label: 'Alert Rules', href: '/alert-rules', icon: BellRing }, { label: 'Maintenance', href: '/maintenance', icon: Calendar }, { label: 'Settings', href: '/settings', icon: Settings },