diff --git a/app/layouts/SystemLayout.tsx b/app/layouts/SystemLayout.tsx
index fca0d33b8..17f296df6 100644
--- a/app/layouts/SystemLayout.tsx
+++ b/app/layouts/SystemLayout.tsx
@@ -12,6 +12,7 @@ import {
Access16Icon,
Cloud16Icon,
IpGlobal16Icon,
+ Logs16Icon,
Metrics16Icon,
Servers16Icon,
SoftwareUpdate16Icon,
@@ -57,6 +58,7 @@ export default function SystemLayout() {
{ value: 'Subnet Pools', path: pb.subnetPools() },
{ value: 'System Update', path: pb.systemUpdate() },
{ value: 'Fleet Access', path: pb.fleetAccess() },
+ { value: 'Audit Log', path: pb.auditLog() },
]
// filter out the entry for the path we're currently on
.filter((i) => i.path !== pathname)
@@ -107,6 +109,9 @@ export default function SystemLayout() {
+++