2023-06-27 01:18:08 +00:00
|
|
|
import { Flex } from '@chakra-ui/react'
|
2023-06-29 23:41:06 +00:00
|
|
|
import { ProfileDrawer } from '~/components/Nav/ProfileDrawer'
|
2023-06-28 08:25:17 +00:00
|
|
|
import { Splash } from '~/components/Splash/Splash'
|
|
|
|
import { ThingtimeDemo } from '~/components/Thingtime/ThingtimeDemo'
|
|
|
|
|
2023-06-26 12:08:05 +00:00
|
|
|
export default function Index () {
|
2023-06-23 03:59:14 +00:00
|
|
|
return (
|
2023-06-29 23:41:06 +00:00
|
|
|
<Flex
|
|
|
|
maxW='100%'
|
|
|
|
flexDir='column'
|
|
|
|
alignItems='center'
|
|
|
|
justifyContent='center'
|
|
|
|
>
|
2023-06-28 08:25:17 +00:00
|
|
|
<Splash></Splash>
|
2023-06-29 11:06:58 +00:00
|
|
|
<ThingtimeDemo></ThingtimeDemo>
|
2023-06-29 23:41:06 +00:00
|
|
|
<ProfileDrawer></ProfileDrawer>
|
2023-06-27 01:18:08 +00:00
|
|
|
</Flex>
|
2023-06-26 12:08:05 +00:00
|
|
|
)
|
2023-06-23 03:59:14 +00:00
|
|
|
}
|