26 lines
550 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"
maxWidth="100vw"
minHeight="100vh"
paddingY="100px"
>
<Flex
alignItems="center"
justifyContent="center"
width="800px"
textAlign="center"
>
<TextAnimation1 ce={props?.ce} texts={props?.texts}></TextAnimation1>
</Flex>
2023-06-28 08:25:17 +00:00
</Flex>
)
}