-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbadges.ts
More file actions
57 lines (55 loc) · 1.74 KB
/
badges.ts
File metadata and controls
57 lines (55 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { LucideIcon, Shield, Atom, Bot, Layers, Trophy } from 'lucide-react';
export interface Badge {
id: string;
label: string;
description: string;
icon: LucideIcon;
color: string;
requirements: string[]; // List of skill IDs required
}
export const BADGES: Badge[] = [
{
id: 'foundation-layer',
label: 'Foundation Layer',
description: 'Mastered the bedrock of the web (HTML, Git, JS).',
icon: Shield,
color: 'text-blue-400',
requirements: ['web-standards', 'git-ops', 'es-next']
},
{
id: 'react-pro',
label: 'React Pro',
description: 'Built a mastery of modern Frontend Engineering.',
icon: Atom,
color: 'text-cyan-400',
requirements: ['react-core', 'tailwind', 'typescript', 'state-machines']
},
{
id: 'backend-master',
label: 'Backend Architect',
description: 'Databases, APIs, and Server Runtimes are your playground.',
icon: Layers,
color: 'text-green-400',
requirements: ['node-runtime', 'postgresql', 'drizzle-orm']
},
{
id: 'ai-pioneer',
label: 'AI Pioneer',
description: 'Bridging the gap between software and intelligence.',
icon: Bot,
color: 'text-purple-400',
requirements: ['llm-integration', 'rag-arch', 'vector-db']
},
{
id: 'full-stack-hero',
label: 'Full Stack Hero',
description: 'You have conquered the entire core stack.',
icon: Trophy,
color: 'text-yellow-400',
requirements: [
'web-standards', 'git-ops', 'es-next',
'react-core', 'tailwind', 'typescript',
'node-runtime', 'postgresql', 'drizzle-orm'
]
}
];