chore: full stack stability and migration fixes, plus react UI progress
Some checks failed
CI / podman-build (push) Has been cancelled
CI / rust (push) Has been cancelled

This commit is contained in:
2026-03-18 09:01:38 +02:00
parent 38cab8c246
commit a66d908eff
142 changed files with 12210 additions and 3402 deletions

View File

@@ -23,6 +23,12 @@ import {
TrendingUp as ScalingIcon,
Favorite as HealthIcon,
Settings as SettingsIcon,
People as UsersIcon,
Folder as StorageIcon,
TableChart as DatabaseIcon,
Functions as FunctionsIcon,
Bolt as RealtimeIcon,
Article as LogsIcon,
} from '@mui/icons-material'
import { useNavigate, useLocation } from 'react-router-dom'
@@ -30,6 +36,12 @@ const drawerWidth = 240
const menuItems = [
{ text: 'Dashboard', icon: <DashboardIcon />, path: '/' },
{ text: 'Users', icon: <UsersIcon />, path: '/auth' },
{ text: 'Storage', icon: <StorageIcon />, path: '/storage' },
{ text: 'Database', icon: <DatabaseIcon />, path: '/database' },
{ text: 'Functions', icon: <FunctionsIcon />, path: '/functions' },
{ text: 'Realtime', icon: <RealtimeIcon />, path: '/realtime' },
{ text: 'Logs', icon: <LogsIcon />, path: '/logs' },
{ text: 'Servers', icon: <ServerIcon />, path: '/servers' },
{ text: 'Templates', icon: <TemplateIcon />, path: '/templates' },
{ text: 'Providers', icon: <ProviderIcon />, path: '/providers' },