2
0
Fork 0
mirror of https://github.com/elementor/hello-theme.git synced 2026-03-03 12:56:14 +08:00
hello-theme/modules/admin-home/assets/js/pages/admin-page.js

31 lines
867 B
JavaScript

import Box from '@elementor/ui/Box';
import { ThemeProvider } from '@elementor/ui/styles';
import { GridWithActionLinks } from '../layouts/grids/grid-with-action-links';
import Stack from '@elementor/ui/Stack';
import { QuickLinks } from '../components/paper/quick-links';
import { Welcome } from '../components/paper/welcome';
import { SiteParts } from '../components/paper/site-parts';
import { Resources } from '../components/paper/resources';
export const AdminPage = () => {
return (
<ThemeProvider colorScheme="auto">
<Box className="hello_plus__notices" component="div">
</Box>
<Box>
<Box sx={ { mb: 2 } }>
<Welcome />
</Box>
<GridWithActionLinks>
<Stack direction="column" gap={ 2 }>
<QuickLinks />
<SiteParts />
<Resources />
</Stack>
</GridWithActionLinks>
</Box>
</ThemeProvider>
);
};