export const PROJECT_STATUSES = ["active", "archived", "completed"] as const; export const TASK_STATUSES = [ "todo", "in_progress", "in_review", "done", ] as const; export const PRIORITIES = ["low", "medium", "high", "urgent"] as const; export type ProjectStatus = (typeof PROJECT_STATUSES)[number]; export type TaskStatus = (typeof TASK_STATUSES)[number]; export type Priority = (typeof PRIORITIES)[number];