const PROFESSION = 'Full-Stack Developer';
const LOCATION = 'Delhi, India';
const YEARS_OF_EXPERIENCE = 3; // years;
// Employers
const employers = [
{ name: 'FuturixAI', role: 'Founder | CTO', type: 'Full-time' },
{ name: 'AICTE (Ministry of Education)', role: 'Full-Stack Developer', type: 'Full-time' },
{ name: 'Kalagato', role: 'Backend Developer', type: 'Part-time' },
{ name: 'Bombay Sorted', role: 'Frontend Developer', type: 'Freelance' },
{ name: 'EmeraldChat', role: 'Full-Stack Developer', type: 'Freelance' }
];
// Top Skills
const skills = {
languages: ['TypeScript', 'Go', 'Java', 'Python', 'JavaScript'],
frameworks: [
'React',
'Next.js',
'Nuxt.js',
'Svelte',
'SvelteKit',
'Django',
'Flask',
'FastAPI',
'Express.js',
'Node.js',
'Tailwind CSS',
'Laravel' // still learning this...
],
databases: ['PostgreSQL', 'MongoDB', 'Redis', 'Prisma', 'Firebase', 'Supabase'],
devops: ['Docker', 'Kubernetes', 'AWS', 'Nginx', 'Apache'],
messaging: ['Apache Kafka', 'WebSockets', 'WebRTC'],
monitoring: ['Prometheus', 'Grafana'],
tools: ['Figma', 'GraphQL', 'Rest API', 'TRPC', 'NextAuth', 'Dribbble']
};
// Fun Facts
const interests = ['Programming', 'Video Games', 'Music', 'Movies'];
Manasvi