Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
26 lines
719 B
JavaScript
26 lines
719 B
JavaScript
import CssBaseline from '@mui/material/CssBaseline';
|
|
import Container from '@mui/material/Container';
|
|
import AppTheme from '../shared-theme/AppTheme';
|
|
import AppAppBar from './components/AppAppBar';
|
|
import MainContent from './components/MainContent';
|
|
import Latest from './components/Latest';
|
|
import Footer from './components/Footer';
|
|
|
|
export default function Blog(props) {
|
|
return (
|
|
<AppTheme {...props}>
|
|
<CssBaseline enableColorScheme />
|
|
<AppAppBar />
|
|
<Container
|
|
maxWidth="lg"
|
|
component="main"
|
|
sx={{ display: 'flex', flexDirection: 'column', my: 16, gap: 4 }}
|
|
>
|
|
<MainContent />
|
|
<Latest />
|
|
</Container>
|
|
<Footer />
|
|
</AppTheme>
|
|
);
|
|
}
|