Hi , I am Yanu Setiawan
class About {
name: string;
role: string;
address: string;
constructor() {
this.name = 'Yanu Setiawan';
this.role = 'Frontend Developer'
this.address = 'Tuban, East Java, Indonesia'
this.activity = 'Eat, Sleep, Code'
}
summary() {
return `I'm ${this.name} a ${this.role} Specializing in web development with a passion for creating outstanding digital experiences. Proficient in various frontend frameworks such as ReactJs and VueJs for web development, along with React Native for crafting engaging mobile applications. Excited to contribute creativity and dedication to projects.`
}
}