11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
|
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>
|
||
|
|
||
|
}
|