23 lines
604 B
TypeScript
23 lines
604 B
TypeScript
import {
|
|
Container
|
|
} from '@mui/material'
|
|
import { useRecoilValue } from 'recoil'
|
|
import { loadingAtom } from '../atoms/ui'
|
|
import Downloads from '../components/Downloads'
|
|
import HomeActions from '../components/HomeActions'
|
|
import LoadingBackdrop from '../components/LoadingBackdrop'
|
|
import Splash from '../components/Splash'
|
|
|
|
export default function Home() {
|
|
const isLoading = useRecoilValue(loadingAtom)
|
|
|
|
return (
|
|
<Container maxWidth="xl" sx={{ mt: 2, mb: 8 }}>
|
|
<LoadingBackdrop isLoading={isLoading} />
|
|
<Splash />
|
|
<Downloads />
|
|
<HomeActions />
|
|
</Container>
|
|
)
|
|
}
|