feat: implement main application dashboard and service management UI in App.tsx
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user