From 7f35a792d18654849015638108170215c8d01417 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Fri, 12 Jun 2026 22:00:00 -0500 Subject: [PATCH] feat(proxmox): add routes for notes, search, and administration pages Wire up ProxmoxNotesPage, ProxmoxSearchPage, and ProxmoxAdminPage with imports, nav children, and entries. Search placed at top of nav, Notes after Tasks, Administration at bottom. --- src/App.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 697ab0b9..5528780f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -56,6 +56,9 @@ import { ProxmoxTasksPage } from "@/pages/Proxmox/TasksPage"; import { ProxmoxViewsPage } from "@/pages/Proxmox/ViewsPage"; import { ProxmoxCertificatesPage } from "@/pages/Proxmox/CertificatesPage"; import { ProxmoxSubscriptionPage } from "@/pages/Proxmox/SubscriptionPage"; +import { ProxmoxNotesPage } from "@/pages/Proxmox/NotesPage"; +import { ProxmoxSearchPage } from "@/pages/Proxmox/SearchPage"; +import { ProxmoxAdminPage } from "@/pages/Proxmox/AdminPage"; import { ProxmoxSettings } from "@/pages/Settings/Proxmox"; import { Updater } from "@/pages/Settings/Updater"; @@ -68,6 +71,7 @@ const navItems = [ icon: ServerIcon, label: "Proxmox", children: [ + { to: "/proxmox/search", label: "Search" }, { to: "/proxmox/remotes", label: "Remotes" }, { to: "/proxmox/vms", label: "VMs" }, { to: "/proxmox/containers", label: "Containers" }, @@ -79,9 +83,11 @@ const navItems = [ { to: "/proxmox/ha", label: "HA Groups" }, { to: "/proxmox/backup", label: "Backup" }, { to: "/proxmox/tasks", label: "Tasks" }, + { to: "/proxmox/notes", label: "Notes" }, { to: "/proxmox/views", label: "Views" }, { to: "/proxmox/certificates", label: "Certificates" }, { to: "/proxmox/subscriptions", label: "Subscriptions" }, + { to: "/proxmox/admin", label: "Administration" }, ], }, { to: "/history", icon: Clock, label: "History" }, @@ -320,6 +326,9 @@ export default function App() { } /> } /> } /> + } /> + } /> + } /> } /> } /> } />