const PROFESSION = 'Full-Stack Developer';
const LOCATION = 'Jakarta, Indonesia';
// Employers
const employers = [
{ name: 'MSIG Life', role: 'Frontend Developer', type: 'Full-time' },
{ name: 'Selego', role: 'Frontend Developer', type: 'Part-time' },
{ name: 'Upwork', role: 'Frontend Developer', type: 'Freelance' },
{ name: 'Falah Inovasi Teknologi', role: 'Frontend Developer', type: 'Previous' }
];
// Top Skills
const skills = {
languages: ['TypeScript', 'Go', 'Java'],
frameworks: [
'React',
'Next.js',
'Tailwind CSS',
'Node.js',
'Laravel' // still learning this...
],
databases: ['PostgreSQL', 'MongoDB'],
tools: ['Figma', 'Version Control', 'GraphQL', 'Rest API', 'TRPC']
};
// Fun Facts
const interests = ['Programming', 'Memes', 'Video Games', 'Music', 'Movies'];
Wiscaksono