13 lines
368 B
TypeScript
Raw Normal View History

import { Flex } from '@chakra-ui/react'
2023-06-28 08:25:17 +00:00
import { Splash } from '~/components/Splash/Splash'
import { ThingtimeDemo } from '~/components/Thingtime/ThingtimeDemo'
export default function Index () {
2023-06-23 03:59:14 +00:00
return (
2023-06-28 08:25:17 +00:00
<Flex flexDir="column" alignItems='center' justifyContent='center'>
<Splash></Splash>
{/* <ThingtimeDemo></ThingtimeDemo> */}
</Flex>
)
2023-06-23 03:59:14 +00:00
}