17 lines
320 B
TypeScript
Raw Normal View History

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