- π Freelancer building modern, responsive applications.
- π± Deepening my knowledge in React.js and modern front-end architectures.
- βπΌ I write about code & life in my blog: juanda404
- π Web Developer since 2024 β coding with passion and discipline.
const juanda404 = {
getTechnicalSkills: () => [
"React.js",
"JavaScript",
"HTML5",
"CSS3",
"Tailwind CSS",
"MySQL",
"C#",
"CMS Sitefinity",
],
};
const AboutMe = () => {
return (
<div>
<h1>About Me</h1>
<h2>Technical Skills</h2>
<ul>
{juanda404.getTechnicalSkills().map((skill, index) => (
<li key={index}>{skill}</li>
))}
</ul>
</div>
);
};Passionate about gym training, following a disciplined hypertrophy-focused routine every week. πͺπ₯
π« Contact ```export default AboutMe;