From 6af0a88841ba51e2a4ed7bc491afe96ec2396f30 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Tue, 21 Jul 2026 11:45:43 +0100 Subject: [PATCH] feat(web): add Steps to main nav --- web/components/Sidebar.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/web/components/Sidebar.tsx b/web/components/Sidebar.tsx index 387bf2d..8f0e838 100644 --- a/web/components/Sidebar.tsx +++ b/web/components/Sidebar.tsx @@ -60,11 +60,20 @@ function SettingsIcon() { ); } +function StepsIcon() { + return ( + + + + ); +} + const navItems: NavItem[] = [ { href: "/servers", label: "Servers", icon: }, { href: "/keys", label: "SSH Keys", icon: }, { href: "/secrets", label: "Secrets", icon: }, { href: "/workflows", label: "Workflows", icon: }, + { href: "/steps", label: "Steps", icon: }, { href: "/audit", label: "Audit Log", icon: }, { href: "/settings", label: "Settings", icon: }, ];