()
| 71 | ` |
| 72 | |
| 73 | const Intro = () => { |
| 74 | return ( |
| 75 | <Box |
| 76 | initial={{height:0}} |
| 77 | animate={{height: '55vh'}} |
| 78 | transition={{ type: 'spring', duration:2, delay:1 }} |
| 79 | > |
| 80 | <SubBox> |
| 81 | <Text> |
| 82 | <h1>Hi,</h1> |
| 83 | <h3>I'm CodeBucks.</h3> |
| 84 | <h6>I design and Code simple yet beautiful websites.</h6> |
| 85 | </Text> |
| 86 | </SubBox> |
| 87 | <SubBox> |
| 88 | <motion.div |
| 89 | initial={{opacity:0}} |
| 90 | animate={{opacity: 1}} |
| 91 | transition={{ duration:1, delay:2 }} |
| 92 | > |
| 93 | <img className="pic" src={Me} alt="Profile Pic" /> |
| 94 | </motion.div> |
| 95 | </SubBox> |
| 96 | </Box> |
| 97 | ) |
| 98 | } |
| 99 | |
| 100 | export default Intro |
nothing calls this directly
no outgoing calls
no test coverage detected