- Replaced broken Gantt chart with working Kanban board - Added task types: idea, task, bug, research, plan - Added status columns: backlog, in-progress, review, done - Added priority levels: low, medium, high, urgent - Implemented 1-to-many threaded comments/notes system - Added working CRUD for projects and tasks - Added shadcn/ui components: badge, button, card, dialog, label, select, table, textarea - Data persistence with Zustand + localStorage - Fixed all UI overlap issues
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|