41 lines
1.1 KiB
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 { Splash } from "~/components/Splash/Splash"
import { Thingtime } from "~/components/Thingtime/Thingtime"
import { ThingtimeDemo } from "~/components/Thingtime/ThingtimeDemo"
import { useThingtime } from "~/components/Thingtime/useThingtime"
import { GradientPath } from "~/gp/GradientPath"
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> */}
2023-06-28 08:25:17 +00:00
<Splash></Splash>
<Thingtime
2023-07-15 08:08:36 +00:00
chakras={{
marginBottom: 200,
}}
2023-07-10 00:46:30 +00:00
width="600px"
path="Content"
valuePl={0}
thing={thingtime?.["Content"]}
></Thingtime>
<ThingtimeDemo></ThingtimeDemo>
2023-07-15 08:08:36 +00:00
<Thingtime
thing={thingtime}
chakras={{ marginY: 200 }}
width="600px"
></Thingtime>
<ProfileDrawer></ProfileDrawer>
</Flex>
)
2023-06-23 03:59:14 +00:00
}