import Link from 'next/link'; import { motion } from 'framer-motion'; import { Plus, Clipboard, Sparkles } from 'lucide-react'; interface EmptyStateProps { onTaskCreated?: () => void; } export function EmptyState({ onTaskCreated }: EmptyStateProps) { return (

No tasks yet

Get started by creating your first task. Organize your work and boost your productivity.

Create your first task

"Productivity is never an accident. It's always the result of a commitment to excellence."

); }