import { Flex } from '@chakra-ui/react'
|
|
import { TextAnimation1 } from '~/components/textAnimation1'
|
|
export default function Index () {
|
|
return (
|
|
<Flex w='100vw' h='100vh' alignItems='center' justifyContent='center'>
|
|
<TextAnimation1 />
|
|
</Flex>
|
|
)
|
|
}
|