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: },
];