93 lines
2.1 KiB
JavaScript
93 lines
2.1 KiB
JavaScript
const upcomingTasks = [
|
|
{
|
|
id: 1,
|
|
title: 'Topnav layout design',
|
|
date: '14 Oct, 2019',
|
|
task: 'Waiting',
|
|
user: ['/images/users/avatar-4.jpg', '/images/users/avatar-5.jpg'],
|
|
budget: 145,
|
|
groupId: 1
|
|
},
|
|
{
|
|
id: 2,
|
|
title: 'Create a New Landing UI',
|
|
date: '15 Oct, 2019',
|
|
task: 'Approved',
|
|
user: ['/images/users/avatar-6.jpg', '/images/users/avatar-7.jpg'],
|
|
budget: 112,
|
|
groupId: 1
|
|
},
|
|
{
|
|
id: 3,
|
|
title: 'Create a Skote Logo',
|
|
date: '15 Oct, 2019',
|
|
task: 'Waiting',
|
|
user: ['/images/users/avatar-5.jpg'],
|
|
budget: 86,
|
|
groupId: 1
|
|
},
|
|
];
|
|
|
|
const progressTasks = [
|
|
{
|
|
id: 4,
|
|
title: 'Brand logo design',
|
|
date: '12 Oct, 2019',
|
|
task: 'Complete',
|
|
user: ['/images/users/avatar-6.jpg'],
|
|
budget: 132,
|
|
groupId: 2
|
|
},
|
|
{
|
|
id: 5,
|
|
title: 'Create a Blog Template UI',
|
|
date: '13 Oct, 2019',
|
|
task: 'Pending',
|
|
user: ['/images/users/avatar-8.jpg', '/images/users/avatar-1.jpg'],
|
|
budget: 103,
|
|
groupId: 2
|
|
},
|
|
{
|
|
id: 6,
|
|
title: 'Skote Dashboard UI',
|
|
date: '13 Oct, 2019',
|
|
task: 'Complete',
|
|
user: ['/images/users/avatar-2.jpg'],
|
|
budget: 94,
|
|
groupId: 2
|
|
},
|
|
];
|
|
|
|
const completedTasks = [
|
|
{
|
|
id: 7,
|
|
title: 'Redesign - Landing page',
|
|
date: '10 Oct, 2019',
|
|
task: 'Complete',
|
|
user: ['/images/users/avatar-4.jpg'],
|
|
budget: 145,
|
|
groupId: 3
|
|
},
|
|
{
|
|
id: 8,
|
|
title: 'Multipurpose Landing',
|
|
date: '09 Oct, 2019',
|
|
task: 'Complete',
|
|
user: ['/images/users/avatar-6.jpg', '/images/users/avatar-7.jpg'],
|
|
budget: 92,
|
|
groupId: 3
|
|
},
|
|
{
|
|
id: 9,
|
|
title: 'Skote landing Psd',
|
|
date: '15 Oct, 2019',
|
|
task: 'Waiting',
|
|
user: ['/images/users/avatar-5.jpg'],
|
|
budget: 86,
|
|
groupId: 3
|
|
},
|
|
];
|
|
|
|
export { upcomingTasks, progressTasks, completedTasks };
|
|
|