π¨βπ» Sorcerer of Software Engineering | 7+ Years X
import { ReactJS } from 'myTechStack';
const AboutMe = () => {
const myJourney = [
'π₯ Crafting pixels into seamless user experiences since 2016',
'π» Mastering the arcane arts of ReactJS and its mystical stacks',
'π Launching web applications to new dimensions of performance',
'π± Transforming designs into living, breathing interfaces',
'π Navigating the ever-expanding cosmos of front-end technologies',
];
return (
<div>
<h2>π About Me:</h2>
<ul>
{myJourney.map((milestone, index) => (
<li key={index}>{milestone}</li>
))}
</ul>
<p>Let's code the future together! πβ¨</p>
</div>
);
};
export default AboutMe;