import { motion } from "framer-motion"; import { Box, Center, VStack } from "@chakra-ui/react"; import { welcome_home_text, welcome_home_tip, } from "../static-data/welcome_home_text"; import {renderMarkdown} from "./markdown/MarkdownComponent"; function WelcomeHomeMessage({ visible }) { const containerVariants = { visible: { transition: { staggerChildren: 0.15, }, }, hidden: { transition: { staggerChildren: 0.05, staggerDirection: -1, }, }, }; const textVariants = { visible: { opacity: 1, y: 0, transition: { duration: 0.5, ease: [0.165, 0.84, 0.44, 1], }, }, hidden: { opacity: 0, y: 20, transition: { duration: 0.3, ease: [0.165, 0.84, 0.44, 1], }, }, }; return (