I was born on January 2008, right in the middle of one of the most exciting times for technology and human progress. From a young age, I’ve always been curious about how things work, and that naturally led me into the world of technology and entrepreneurship.
I’ve always believed that if you genuinely want to learn something, you’ve got the ability to do it without having to rely on external help. I’m passionate about building projects, watching them grow, and seeing how people use them in their everyday lives. I enjoy creating systems that make life simpler and more practical, turning every challenge into a chance to grow and bring ideas to life.
class WhoAmI {
user: string;
hobbies: string[];
constructor() {
this.user = 'Leo Freyre';
this.hobbies = ['Gym', 'Read', 'Chess'];
}
getCity(): string {
return 'Dubai';
}
}
export default WhoAmI;
