feat: Add ProjectTasksPage and ProjectTasksDashboard components with task categorization and filtering
This commit is contained in:
15
src/app/project-tasks/page.js
Normal file
15
src/app/project-tasks/page.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import ProjectTasksDashboard from "@/components/ProjectTasksDashboard";
|
||||
import PageContainer from "@/components/ui/PageContainer";
|
||||
import PageHeader from "@/components/ui/PageHeader";
|
||||
|
||||
export default function ProjectTasksPage() {
|
||||
return (
|
||||
<PageContainer>
|
||||
<PageHeader
|
||||
title="Project Tasks"
|
||||
description="Monitor pending tasks, overdue items, and recent activity across all projects"
|
||||
/>
|
||||
<ProjectTasksDashboard />
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user