Software Engineer focused on FAANG-level skills
import { SoftwareEngineer, Skills, Roadmap } from 'Gabr002';
class Bio extends SoftwareEngineer {
name = 'Gabriel Dantas Lopes';
role = 'Software Engineer';
studying = 'Bachelor of Computer Science';
goal = 'FAANG Preparation';
}
class CurrentStack implements Skills {
competitiveProgramming = ['C++', 'C', 'Algorithms', 'Data Structures'];
frontend = ['HTML', 'CSS', 'JavaScript', 'TypeScript', 'React.js'];
practice = ['Codeforces', 'Beecrowd', 'LeetCode'];
}
class StudyRoadmap implements Roadmap {
currentlyLearning = [
'Node.js & Backend Foundations',
'Domain-Driven Design (DDD)',
'Database Modeling'
];
futureGoals = [
'System Design',
'Clean Architecture',
'Microservices'
];
}

