import { cn } from '@/lib/cn'; import type { Project } from '@/lib/types'; interface ProjectCardProps { project: Project; onClick: (project: Project) => void; } const statusColors: Record = { active: 'bg-success/20 text-success', paused: 'bg-warning/20 text-warning', completed: 'bg-blue-600/20 text-blue-400', archived: 'bg-gray-600/20 text-gray-400', }; export function ProjectCard({ project, onClick }: ProjectCardProps): React.ReactElement { return ( ); }