@@ -10,6 +10,7 @@ import Avatar7 from "../assets/Avatar-7.png";
1010import Avatar8 from "../assets/Avatar-8.png" ;
1111import Avatar9 from "../assets/Avatar-9.png" ;
1212
13+ // HOME PAGE
1314export const listData = [
1415 { text : "Review LMS project timelines and milestones." } ,
1516 { text : "Research new investment possibilities for your portfolio." } ,
@@ -37,53 +38,8 @@ export const listData = [
3738 } ,
3839] ;
3940
40- export const gridData = [
41- {
42- taskName : "#2213 Define project scope and objectives." ,
43- status : "🕒 Postponed" ,
44- } ,
45- {
46- taskName : "#2214 Conduct market research to assess existing LMS solutions." ,
47- status : "✅ Completed" ,
48- } ,
49- {
50- taskName : "#5342 Identify target audience and their specific needs." ,
51- status : "⚠ Delayed" ,
52- } ,
53- {
54- taskName :
55- "#7211 Create a project timeline with milestones and deliverables." ,
56- status : "⏳ In Progress" ,
57- } ,
58- {
59- taskName :
60- "#2811 Gather requirements from stakeholders through interviews or surveys." ,
61- status : "❌ Cancelled" ,
62- } ,
63- {
64- taskName : "#2213 Define project scope and objectives." ,
65- status : "🕒 Postponed" ,
66- } ,
67- {
68- taskName : "#2214 Conduct market research to assess existing LMS solutions." ,
69- status : "✅ Completed" ,
70- } ,
71- {
72- taskName : "#5342 Identify target audience and their specific needs." ,
73- status : "⚠ Delayed" ,
74- } ,
75- {
76- taskName :
77- "#7211 Create a project timeline with milestones and deliverables." ,
78- status : "⏳ In Progress" ,
79- } ,
80- {
81- taskName :
82- "#2811 Gather requirements from stakeholders through interviews or surveys." ,
83- status : "❌ Cancelled" ,
84- } ,
85- ] ;
8641
42+ // PROJECTS PAGE
8743export interface ProjectData {
8844 ProjectID : number ;
8945 ProjectName ?: string ;
@@ -95,11 +51,11 @@ export interface ProjectData {
9551}
9652
9753export const priorities = [
98- "Urgent" ,
99- "Medium priority" ,
100- "Low priority" ,
101- "High priority" ,
102- "Routine" ,
54+ "Urgent" ,
55+ "Medium priority" ,
56+ "Low priority" ,
57+ "High priority" ,
58+ "Routine" ,
10359] ;
10460
10561export const projectManagers = [
@@ -658,6 +614,128 @@ export const projectsData = [
658614 } ,
659615] ;
660616
617+ // TASKS PAGE
618+ export const tasksData = [
619+ {
620+ taskId : '#2213' ,
621+ taskName : 'Define project scope and objectives.' ,
622+ assignedTo : 'Fabiola.Cassin90' ,
623+ dueDate : '07/31/2025' ,
624+ status : '🕒 Postponed' ,
625+ tags : [ 'Feature Development' , 'Phase 1' ] ,
626+ priority : 'High priority'
627+ } ,
628+ {
629+ taskId : '#2213' ,
630+ taskName : 'Conduct market research to assess existing LMS solutions.' ,
631+ assignedTo : 'Marlon66' ,
632+ dueDate : '08/11/2025' ,
633+ status : '✅ Completed' ,
634+ tags : [ 'Research' , 'Q1 Release' ] ,
635+ priority : 'Medium priority'
636+ } ,
637+ {
638+ taskId : '#5342' ,
639+ taskName : 'Identify target audience and their specific needs.' ,
640+ assignedTo : 'Maegan_Dietrich56' ,
641+ dueDate : '08/21/2025' ,
642+ status : '⚠ Delayed' ,
643+ tags : [ 'Research' , 'Client' ] ,
644+ priority : 'Urgent'
645+ } ,
646+ {
647+ taskId : '#7211' ,
648+ taskName : 'Create a project timeline with milestones and deliverables.' ,
649+ assignedTo : 'Howell69' ,
650+ dueDate : '07/17/2025' ,
651+ status : '⏳ In Progress' ,
652+ tags : [ 'Feature Development' , 'Sprint 1' ] ,
653+ priority : 'High priority'
654+ } ,
655+ {
656+ taskId : '#2213' ,
657+ taskName : 'Review and update the incident response plan to incorporate new threats and vulnerabilities.' ,
658+ assignedTo : 'Kory.Lockman' ,
659+ dueDate : '05/24/2025' ,
660+ status : '❌ Cancelled' ,
661+ tags : [ 'Feature Development' , 'Internal' ] ,
662+ priority : 'Low priority'
663+ } ,
664+ {
665+ taskId : '#2811' ,
666+ taskName : 'Gather requirements from stakeholders through interviews or surveys.' ,
667+ assignedTo : 'Nolan.Kling13' ,
668+ dueDate : '07/01/2025' ,
669+ status : '🔄 Pending Review' ,
670+ tags : [ 'Feature Development' , 'Innovation' ] ,
671+ priority : 'Medium priority'
672+ } ,
673+ {
674+ taskId : '#2811' ,
675+ taskName : 'Set up monitoring tools and analyze system performance metrics to identify and address potential bottlenecks.' ,
676+ assignedTo : 'Antoinette_Hills' ,
677+ dueDate : '12/15/2025' ,
678+ status : '⚠ Delayed' ,
679+ tags : [ 'Research' , 'Innovation' ] ,
680+ priority : 'Low priority'
681+ } ,
682+ {
683+ taskId : '#3516' ,
684+ taskName : 'Develop a budget for the project, including potential software and hardware needs.' ,
685+ assignedTo : 'Alden_Upton' ,
686+ dueDate : '05/03/2025' ,
687+ status : '🚧 On Hold' ,
688+ tags : [ 'Feature Development' , 'Maintenance' ] ,
689+ priority : 'Routine'
690+ } ,
691+ {
692+ taskId : '#1415' ,
693+ taskName : 'Conduct a SWOT analysis to assess strengths, weaknesses, opportunities, and threats.' ,
694+ assignedTo : 'Travis.Gerhold80' ,
695+ dueDate : '09/05/2025' ,
696+ status : '✔ Approved' ,
697+ tags : [ 'Feature Development' , 'Java, Python, JavaScript, React, Node.js, SQL' ] ,
698+ priority : 'Medium priority'
699+ } ,
700+ {
701+ taskId : '#1536' ,
702+ taskName : 'Implement Content Management Features for Instructors.' ,
703+ assignedTo : 'Jamaal41' ,
704+ dueDate : '07/12/2025' ,
705+ status : '✅ Completed' ,
706+ tags : [ 'Bug Fix' , 'Feature Development' ] ,
707+ priority : 'High priority'
708+ } ,
709+ {
710+ taskId : '#1541' ,
711+ taskName : 'Select a suitable technology stack or platform for the LMS.' ,
712+ assignedTo : 'Fabiola.Cassin90' ,
713+ dueDate : '07/31/2025' ,
714+ status : '🕒 Postponed' ,
715+ tags : [ 'Feature Development' , 'Innovation' ] ,
716+ priority : 'High priority'
717+ } ,
718+ {
719+ taskId : '#2213' ,
720+ taskName : 'Evaluate potential third-party integrations (e.g., payment gateways, content libraries).' ,
721+ assignedTo : 'Fabiola.Cassin90' ,
722+ dueDate : '08/11/2025' ,
723+ status : '✅ Completed' ,
724+ tags : [ 'Feature Development' , 'Innovation' ] ,
725+ priority : 'Urgent'
726+ } ,
727+ {
728+ taskId : '#2213' ,
729+ taskName : 'Create wireframes for user interface (UI) elements and navigation.' ,
730+ assignedTo : 'Marlon66' ,
731+ dueDate : '08/21/2025' ,
732+ status : '⏳ In Progress' ,
733+ tags : [ 'Feature Development' , 'Sprint 1' ] ,
734+ priority : 'Medium priority'
735+ }
736+ ] ;
737+
738+ // TEAMS PAGE
661739export const teamsChips = [
662740 { text : "All" , value : "all" , disabled : false } ,
663741 { text : "Technology and Developement" , value : "technology" , disabled : true } ,
@@ -669,7 +747,7 @@ export const teamsChips = [
669747export const teamsData = [
670748 {
671749 teamCode : "FE" ,
672- teamName : "Frontend team " ,
750+ teamName : "Frontend Team " ,
673751 avatarColor : "#9C38FF" ,
674752 group : "technology" ,
675753 teamMembers : [
0 commit comments