import React from 'react';
const AboutMe = () => {
const name = "Fernando Ocotán";
const field = "Frontend Development";
const study = "Computer Systems Engineering";
const location = "Santa Ana, El Salvador";
const linkedin = "https://www.linkedin.com/in/ferocotan";
return (
<div>
<h1>Hello, I'm {name}</h1>
<p>I am a {field} enthusiast from {location}, currently studying {study}.</p>
<p>Visit my <a href={linkedin} target="_blank" rel="noopener noreferrer">LinkedIn</a>.</p>
</div>
);
};
export default AboutMe;Hello, I'm Fernando Ocotán I am a Frontend Development enthusiast from Santa Ana, El Salvador, currently studying Computer Systems Engineering. Visit my LinkedIn: https://www.linkedin.com/in/ferocotan




