2023-06-27 01:18:08 +00:00
|
|
|
import { Flex } from '@chakra-ui/react'
|
|
|
|
import { TextAnimation1 } from '~/components/textAnimation1'
|
2023-06-26 12:08:05 +00:00
|
|
|
export default function Index () {
|
2023-06-23 03:59:14 +00:00
|
|
|
return (
|
2023-06-27 01:18:08 +00:00
|
|
|
<Flex w='100vw' h='100vh' alignItems='center' justifyContent='center'>
|
|
|
|
<TextAnimation1 />
|
|
|
|
</Flex>
|
2023-06-26 12:08:05 +00:00
|
|
|
)
|
2023-06-23 03:59:14 +00:00
|
|
|
}
|