refactor(ux): consolidate BMAD skills, update design system, and clean up Prisma generated client

This commit is contained in:
Sepehr Ramezani
2026-04-19 19:21:27 +02:00
parent 5296c4da2c
commit 25529a24b8
2476 changed files with 127934 additions and 101962 deletions

View File

@@ -0,0 +1,36 @@
import {
Folder,
Briefcase,
FileText,
Zap,
BarChart3,
Globe,
Sparkles,
Book,
Heart,
Crown,
Music,
Building2,
Plane,
type LucideIcon,
} from 'lucide-react'
const ICON_MAP: Record<string, LucideIcon> = {
'folder': Folder,
'briefcase': Briefcase,
'document': FileText,
'lightning': Zap,
'chart': BarChart3,
'globe': Globe,
'sparkle': Sparkles,
'book': Book,
'heart': Heart,
'crown': Crown,
'music': Music,
'building': Building2,
'flight_takeoff': Plane,
}
export function getNotebookIcon(iconName: string | null | undefined): LucideIcon {
return ICON_MAP[iconName || 'folder'] || Folder
}