diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx
index 41b30d8c..deed7060 100644
--- a/frontend/src/components/Layout.tsx
+++ b/frontend/src/components/Layout.tsx
@@ -5,6 +5,8 @@ import { ThemeToggle } from './ThemeToggle'
import { Button } from './ui/Button'
import { useAuth } from '../context/AuthContext'
import { checkHealth } from '../api/health'
+import NotificationCenter from './NotificationCenter'
+import SystemStatus from './SystemStatus'
interface LayoutProps {
children: ReactNode
@@ -27,8 +29,7 @@ export default function Layout({ children }: LayoutProps) {
{ name: 'Remote Servers', path: '/remote-servers', icon: '🖥️' },
{ name: 'Certificates', path: '/certificates', icon: '🔒' },
{ name: 'Import Caddyfile', path: '/import', icon: '📥' },
- { name: 'Logs', path: '/logs', icon: '📜' },
- { name: 'Settings', path: '/settings', icon: '⚙️' },
+ { name: 'Settings', path: '/settings/security', icon: '⚙️' },
]
return (
@@ -37,6 +38,7 @@ export default function Layout({ children }: LayoutProps) {
CPM+
+