36 lines
1018 B
TypeScript
Raw Normal View History

import { Box, Flex } from "@chakra-ui/react"
2023-06-28 08:25:17 +00:00
import { ProfileDrawer } from "~/components/Nav/ProfileDrawer"
import { Rainbow } from "~/components/Rainbow/Rainbow"
import { Splash } from "~/components/Splash/Splash"
import { Thingtime } from "~/components/Thingtime/Thingtime"
import { ThingtimeDemo } from "~/components/Thingtime/ThingtimeDemo"
import { useThingtime } from "~/components/Thingtime/useThingtime"
export default function Index() {
const { thingtime } = useThingtime()
2023-06-23 03:59:14 +00:00
return (
<Flex
alignItems="center"
justifyContent="center"
flexDirection="column"
maxWidth="100%"
>
<Box paddingTop={200}></Box>
<Rainbow>
<Box width="200px" height="20px" background="grey"></Box>
</Rainbow>
2023-06-28 08:25:17 +00:00
<Splash></Splash>
<Thingtime
marginBottom={200}
path="Content"
valuePl={0}
thing={thingtime["Content"]}
></Thingtime>
<ThingtimeDemo></ThingtimeDemo>
<ProfileDrawer></ProfileDrawer>
</Flex>
)
2023-06-23 03:59:14 +00:00
}