Loading...
As a full-stack software developer, I build scalable and user-friendly web applications using modern technologies like Next.js, React, and Tailwind CSS. am currently expanding my skill set into mobile development with React Native and Expo to deliver seamless cross-platform experiences. I enjoy solving real-world problems—especially those faced by students—through impactful, fast, and clean solutions.
1const mySkills: string[] = [
2 "HTML", "CSS", "JavaScript", "TypeScript", "ReactJS", "NextJS", "Tailwind CSS",
3 "shadcn/ui", "NodeJS", "ExpressJS", "MongoDB", "Git", "GitHub", "Vercel",
4 "Postman", "Linux", "macOS", "Windows", "pnpm", "npm", "yarn", "Docker", "Radix UI"
5];
6
7const getSkills = (): string => {
8 if (mySkills.length > 0) {
9 const skillsList = mySkills.join(", ");
10 return `🧠 Skills forged in hostel rooms and 3AM debug sessions:\n→ ${skillsList} 💻🔥`;
11 } else {
12 return "Still learning... but already Googling like a pro! 😅";
13 }
14};
15
16console.log(getSkills());