/** * @file app/(app)/dashboard/header/NewTaskButton.tsx * @description Client component rendering an interactive trigger button for creating new tasks. */ "use client"; import { Plus } from "lucide-react"; import { useRouter } from "next/navigation"; /** * Renders a stylized button component with an icon and active state animations to initiate task creation. * * @returns {JSX.Element} The rendered new task button component. */ export default function NewTaskButton() { const router = useRouter(); return ( ); }