MCPcopy Create free account
hub / github.com/codebucks27/react-portfolio-final / Intro

Function Intro

src/components/Intro.jsx:73–98  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71`
72
73const 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
100export default Intro

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected