diff --git a/client/src/components/ui/page-header.tsx b/client/src/components/ui/page-header.tsx new file mode 100644 index 0000000..4250860 --- /dev/null +++ b/client/src/components/ui/page-header.tsx @@ -0,0 +1,50 @@ +import { Link } from "wouter"; +import { Button } from "@/components/ui/button"; +import { ArrowLeft } from "lucide-react"; +import { cn } from "@/lib/utils"; + +interface PageHeaderProps { + title: string; + description?: string; + showBackToDashboard?: boolean; + className?: string; + children?: React.ReactNode; +} + +export function PageHeader({ + title, + description, + showBackToDashboard = true, + className, + children +}: PageHeaderProps) { + return ( +
+ {description} +
+ )} +- Manage your tasks and track your progress -
-