feat: implement main application dashboard and service management UI in App.tsx

This commit is contained in:
Ümit Tunç
2026-03-30 07:25:38 +03:00
parent b603619286
commit c2339b35c7
+10 -3
View File
@@ -37,7 +37,8 @@ import {
CircularProgress, CircularProgress,
Stack, Stack,
Grid, Grid,
Avatar Avatar,
GlobalStyles
} from '@mui/material' } from '@mui/material'
import { import {
Dashboard as DashboardIcon, Dashboard as DashboardIcon,
@@ -503,6 +504,12 @@ function App(): JSX.Element {
const installedPhpVersions = phpVersions.filter(v => v.status === 'installed') const installedPhpVersions = phpVersions.filter(v => v.status === 'installed')
return ( return (
<>
<GlobalStyles styles={{
'.swal2-container': {
zIndex: '9999 !important'
}
}} />
<Box sx={{ display: 'flex', minHeight: '100vh', backgroundImage: 'radial-gradient(circle at 50% 0%, #153E5E 0%, #121212 100%)', bgcolor: 'transparent' }}> <Box sx={{ display: 'flex', minHeight: '100vh', backgroundImage: 'radial-gradient(circle at 50% 0%, #153E5E 0%, #121212 100%)', bgcolor: 'transparent' }}>
<AppBar <AppBar
position="fixed" position="fixed"
@@ -1329,9 +1336,9 @@ function App(): JSX.Element {
onClose={() => setIsMySqlWizardOpen(false)} onClose={() => setIsMySqlWizardOpen(false)}
mySqlVersions={mySqlVersions} mySqlVersions={mySqlVersions}
/> />
</Box > </Box>
</>
) )
} }
export default App export default App