Sifa professional network frontend (Next.js, React, TailwindCSS)
sifa.id/
1export const SKILL_CATEGORIES = [
2 { value: 'technical', label: 'Technical' },
3 { value: 'business', label: 'Business' },
4 { value: 'creative', label: 'Creative' },
5 { value: 'interpersonal', label: 'Interpersonal' },
6 { value: 'industry', label: 'Industry' },
7 { value: 'community', label: 'Community' },
8 { value: 'security', label: 'Security' },
9] as const;
10
11export type SkillCategory = (typeof SKILL_CATEGORIES)[number]['value'];