Implement UI for machines & system settings

This commit is contained in:
2025-09-09 19:08:59 +02:00
parent 7b3ae6bb6e
commit 8b1a9be8c2
9 changed files with 897 additions and 1 deletions

View File

@@ -7,12 +7,16 @@ const getPageTitle = (pathname) => {
switch (pathname) {
case '/dashboard':
return 'Dashboard';
case '/machines':
return 'Machines';
case '/servers':
return 'Servers';
case '/settings':
return 'Settings';
case '/admin/users':
return 'User Management';
case '/admin/settings':
return 'System Settings';
default:
return 'Dashboard';
}