class Developer {
name = 'David Bendezú'
nickname 'Daustinn'
role = 'Software Engineer'
stack = ['React.js', 'Node.js', 'TypeScript', 'PHP']
currentFocus = 'Building scalable web apps'
coffeeLevel = Infinity
bugsExpected = false
status() {
return ['coding', 'shipping', 'learning']
}
build() {
return 'Turning ideas into products...'
}
}
export default new Developer()export default {
role: 'Software Engineer',
currentlyPlaying: 'lofi beats',
status: 'Building cool stuff...',
}

