loading.tsx
// skills.ts — Last modified: March 2026// A complete map of my technical skills and proficiency levelstype SkillSet = Record<string, "expert" | "proficient" | "learning">
const frontend: SkillSet = {
"React": "expert", // 2 years
"Next.js": "proficient", // 1 year
"Tailwind CSS": "proficient", // 1 year
}const backend: SkillSet = {
"Node.js": "expert", // 1 years
"PostgreSQL": "proficient", // 1 years
"GraphQL": "proficient", // 1 years
}const tools: SkillSet = {
"Git": "expert", // 3 years
"Docker": "proficient", // 3 Months
"AWS": "proficient", // 2 years
"Figma": "learning", // 3 months
}