96 lines
2.7 KiB
JavaScript
96 lines
2.7 KiB
JavaScript
import React from 'react';
|
|
import Grid from "@mui/material/Grid";
|
|
import Link from 'next/link';
|
|
import styles from '@/styles/PageTitle.module.css'
|
|
import Features from '@/components/Dashboard/ProjectManagement/Features';
|
|
import TaskDistribution from '@/components/Dashboard/ProjectManagement/TaskDistribution';
|
|
import MyTasks from '@/components/Dashboard/ProjectManagement/MyTasks';
|
|
import TotalUsers from '@/components/Dashboard/ProjectManagement/TotalUsers';
|
|
import CompletedTasks from '@/components/Dashboard/ProjectManagement/CompletedTasks';
|
|
import TasksPerformance from '@/components/Dashboard/ProjectManagement/TasksPerformance';
|
|
import IssuesSummary from '@/components/Dashboard/ProjectManagement/IssuesSummary';
|
|
import AllProjects from '@/components/Dashboard/ProjectManagement/AllProjects';
|
|
import TeamMembers from '@/components/Dashboard/ProjectManagement/TeamMembers';
|
|
import ActivityTimeline from '@/components/Dashboard/ProjectManagement/ActivityTimeline';
|
|
|
|
export default function ProjectManagement() {
|
|
return (
|
|
<>
|
|
{/* Page title */}
|
|
<div className={styles.pageTitle}>
|
|
<h1>Project Management</h1>
|
|
<ul>
|
|
<li>
|
|
<Link href="/project-management/">Dashboard</Link>
|
|
</li>
|
|
<li>
|
|
Project Management
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Features */}
|
|
<Features />
|
|
|
|
<Grid
|
|
container
|
|
rowSpacing={1}
|
|
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
|
>
|
|
<Grid item xs={12} md={12} lg={12} xl={6}>
|
|
{/* TaskDistribution */}
|
|
<TaskDistribution />
|
|
</Grid>
|
|
|
|
<Grid item xs={12} md={12} lg={12} xl={6}>
|
|
{/* MyTasks */}
|
|
<MyTasks />
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid
|
|
container
|
|
rowSpacing={1}
|
|
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
|
>
|
|
<Grid item xs={12} md={12} lg={12} xl={4}>
|
|
{/* TotalUsers */}
|
|
<TotalUsers />
|
|
</Grid>
|
|
|
|
<Grid item xs={12} md={12} lg={12} xl={4}>
|
|
{/* CompletedTasks */}
|
|
<CompletedTasks />
|
|
</Grid>
|
|
|
|
<Grid item xs={12} md={12} lg={12} xl={4}>
|
|
{/* TasksPerformance */}
|
|
<TasksPerformance />
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid
|
|
container
|
|
rowSpacing={1}
|
|
columnSpacing={{ xs: 1, sm: 1, md: 1, lg: 1, xl: 2 }}
|
|
>
|
|
<Grid item xs={12} md={12} lg={12} xl={8}>
|
|
{/* IssuesSummary */}
|
|
<IssuesSummary />
|
|
|
|
{/* AllProjects */}
|
|
<AllProjects />
|
|
</Grid>
|
|
|
|
<Grid item xs={12} md={12} lg={12} xl={4}>
|
|
{/* TeamMembers */}
|
|
<TeamMembers />
|
|
|
|
{/* ActivityTimeline */}
|
|
<ActivityTimeline />
|
|
</Grid>
|
|
</Grid>
|
|
</>
|
|
);
|
|
}
|