11 lines
271 B
TypeScript
Raw Normal View History

2023-06-28 08:25:17 +00:00
import { TextAnimation1 } from '~/components/textAnimation1'
import { Flex } from '@chakra-ui/react'
export const Splash = props => {
return <Flex w='100vw' h='100vh' alignItems='center' justifyContent='center'>
<TextAnimation1></TextAnimation1>
</Flex>
}