The document is a React component that serves as a personal portfolio for a developer named John Doe. It includes sections for an introduction, about me, projects, skills, and a contact form, all enhanced with animations using Framer Motion. The layout is styled using Bootstrap and showcases various projects and skills related to web development.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
8 views3 pages
Prot Folio Img
The document is a React component that serves as a personal portfolio for a developer named John Doe. It includes sections for an introduction, about me, projects, skills, and a contact form, all enhanced with animations using Framer Motion. The layout is styled using Bootstrap and showcases various projects and skills related to web development.
<motion.h2 className="text-center mb-4" initial={{ opacity: 0 }} whileInView={{ opacity: 1 }} transition={{ duration: 0.8 }} > About Me </motion.h2> <motion.p className="text-center" initial={{ opacity: 0 }} whileInView={{ opacity: 1 }} transition={{ duration: 0.8 }} > I'm a passionate developer with experience in building dynamic web applications using the MERN stack. I love solving problems, creating interactive UIs, and optimizing performance. Outside of coding, I enjoy gaming and exploring new tech trends. </motion.p> </section>
<section className="container my-5">
<motion.h2 className="text-center mb-4" initial={{ opacity: 0 }} whileInView={{ opacity: 1 }} transition={{ duration: 0.8 }} > Projects </motion.h2> <div className="row g-4"> {[1, 2, 3, 4, 5, 6].map((project) => ( <motion.div className="col-md-4" key={project} initial={{ opacity: 0, y: 30 }} whileInView={{ opacity: 1, y: 0 }} transition={{ duration: 0.6 }} > <div className="card h-100 text-dark"> <div className="card-body"> <h5 className="card-title">Project {project}</h5> <p className="card-text"> A detailed explanation of project {project} including purpose, technologies used, and key features. This project showcases my ability to work on real-world problems and deliver scalable solutions. </p> </div> </div> </motion.div> ))} </div> </section>