/** * @file trash/components/TrashHeader.tsx * @description Client component rendering the header section for the trash view, including an icon, title, description, and navigation back to the dashboard. */ "use client"; import { ArrowLeft, Trash2 } from "lucide-react"; import Link from "next/link"; /** * Renders the trash page header featuring title details, an indicator icon, * and a link to navigate back to the main dashboard. * * @returns {JSX.Element} The rendered trash header component. */ export default function TrashHeader() { return ( <>

Trash

Tasks removed from your board.

Back to Dashboard ); }