2023-07-04 08:05:08 +00:00
|
|
|
import { Box, Flex } from "@chakra-ui/react"
|
2023-06-28 08:25:17 +00:00
|
|
|
|
2023-07-04 08:05:08 +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"
|
2023-07-05 10:05:35 +00:00
|
|
|
import { GradientPath } from "~/gp/GradientPath"
|
2023-07-04 08:05:08 +00:00
|
|
|
|
|
|
|
export default function Index() {
|
2023-07-01 14:13:27 +00:00
|
|
|
const { thingtime } = useThingtime()
|
|
|
|
|
2023-06-23 03:59:14 +00:00
|
|
|
return (
|
2023-06-29 23:41:06 +00:00
|
|
|
<Flex
|
2023-07-04 08:05:08 +00:00
|
|
|
alignItems="center"
|
|
|
|
justifyContent="center"
|
|
|
|
flexDirection="column"
|
|
|
|
maxWidth="100%"
|
2023-06-29 23:41:06 +00:00
|
|
|
>
|
2023-07-05 10:05:35 +00:00
|
|
|
{/* <Box paddingTop={200}></Box> */}
|
2023-06-28 08:25:17 +00:00
|
|
|
<Splash></Splash>
|
2023-07-01 15:05:55 +00:00
|
|
|
<Thingtime
|
2023-07-04 08:05:08 +00:00
|
|
|
marginBottom={200}
|
|
|
|
path="Content"
|
2023-07-01 15:05:55 +00:00
|
|
|
valuePl={0}
|
2023-07-04 08:05:08 +00:00
|
|
|
thing={thingtime["Content"]}
|
2023-07-01 15:05:55 +00:00
|
|
|
></Thingtime>
|
2023-07-01 14:22:04 +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
|
|
|
}
|