You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Change to items & setItems to "teamMembers" to use as CMS database
22
+
const[items,setItems]=useState([]);
23
+
24
+
useEffect(()=>{
25
+
constfetchStaffMembers=async()=>{
26
+
constdata=awaitgetItems('luminai_team_members');
27
+
setItems(data.data);
28
+
};
29
+
30
+
fetchStaffMembers();
31
+
},[]);
32
+
20
33
constteamMembers=[
21
34
{
22
35
name: 'John Doe',
23
36
role: 'President',
24
-
fact: 'Developed a state-of-the-art NLP model.',
37
+
achievement: 'Developed a state-of-the-art NLP model.',
25
38
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.'
26
39
},
27
40
{
28
41
name: 'Jane Smith',
29
42
role: 'Director of Coursework',
30
-
fact: 'Specialized in machine learning algorithms.',
43
+
achievement: 'Specialized in machine learning algorithms.',
31
44
description: 'Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.'
32
45
},
33
46
{
34
47
name: 'Emily Chen',
35
48
role: 'Director of Logistics',
36
-
fact: 'Organized a statewide coding competition that attracted over 500 participants.',
49
+
achievement: 'Organized a statewide coding competition that attracted over 500 participants.',
37
50
description: 'Emily is known for her exceptional organizational skills and ability to handle complex logistics with ease. She ensures everything runs smoothly.'
38
51
},
39
52
{
40
53
name: 'Michael Thompson',
41
54
role: 'Director of Management',
42
-
fact: 'Managed a team of 20 volunteers for a community tech education program.',
55
+
achievement: 'Managed a team of 20 volunteers for a community tech education program.',
43
56
description: 'Michael\'s leadership and management skills have been instrumental in the success of several community projects, making a significant impact.'
44
57
},
45
58
{
46
59
name: 'Sophia Martinez',
47
60
role: 'Director of Mentorship',
48
-
fact: 'Created a peer mentoring program that improved academic performance and morale among students.',
61
+
achievement: 'Created a peer mentoring program that improved academic performance and morale among students.',
49
62
description: 'Sophia is passionate about helping others succeed. Her mentorship program has been a game-changer for many students, providing guidance and support.'
0 commit comments