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
console.error('Error fetching team members:',err);
38
+
setLoading(false);
39
+
}
30
40
};
31
41
32
-
fetchStaffMembers();
33
-
},[]);
42
+
fetchMembers();
34
43
35
-
// temporary placeholder data
36
-
constteamMembers: Array<{
37
-
name: string;
38
-
role: string;
39
-
achievement: string;
40
-
description: string;
41
-
photo?: string;
42
-
}>=[
43
-
{
44
-
name: "John Doe",
45
-
role: "President",
46
-
achievement: "Developed a state-of-the-art NLP model.",
47
-
description:
48
-
"John is a visionary leader with a deep understanding of natural language processing. His innovative work has set new standards in the field, making significant advancements in AI technology.",
49
-
},
50
-
{
51
-
name: "Jane Smith",
52
-
role: "Director of Coursework",
53
-
achievement: "Specialized in machine learning algorithms.",
54
-
description:
55
-
"Jane is an expert in machine learning with a passion for teaching. Her specialized coursework has empowered countless students to excel in AI, breaking down complex algorithms into easily understandable concepts.",
56
-
},
57
-
{
58
-
name: "Emily Chen",
59
-
role: "Director of Logistics",
60
-
achievement:
61
-
"Organized a statewide coding competition that attracted over 500 participants.",
62
-
description:
63
-
"Emily is known for her exceptional organizational skills and ability to handle complex logistics with ease. She ensures everything runs smoothly, from event planning to daily operations.",
64
-
},
65
-
{
66
-
name: "Michael Thompson",
67
-
role: "Director of Management",
68
-
achievement:
69
-
"Managed a team of 20 volunteers for a community tech education program.",
70
-
description:
71
-
"Michael's leadership and management skills have been instrumental in the success of several community projects. His strategic vision and ability to inspire his team have made a significant impact.",
72
-
},
73
-
{
74
-
name: "Sophia Martinez",
75
-
role: "Director of Mentorship",
76
-
achievement:
77
-
"Created a peer mentoring program that improved academic performance and morale among students.",
78
-
description:
79
-
"Sophia is passionate about helping others succeed. Her mentorship program has been a game-changer for many students, providing guidance and support that has led to improved academic performance and increased morale.",
80
-
},
81
-
{
82
-
name: "Alex Johnson",
83
-
role: "Lead Developer",
84
-
achievement:
85
-
"Designed and developed full-stack applications for the AI BootCamp.",
86
-
description:
87
-
"Alex is a talented full-stack developer responsible for designing and implementing the programs used in the courses, as well as developing and maintaining the bootcamp's website. His work ensures a seamless user experience and robust technical infrastructure.",
88
-
},
89
-
{
90
-
name: "Laura Nguyen",
91
-
role: "Instructor",
92
-
achievement:
93
-
"Designed an interactive AI curriculum for high school students.",
94
-
description:
95
-
"Laura is a dedicated educator with a creative approach to teaching AI. Her interactive curriculum engages students and makes learning complex topics enjoyable and accessible.",
96
-
},
97
-
{
98
-
name: "Daniel Kim",
99
-
role: "Instructor",
100
-
achievement:
101
-
"Published research on neural networks and their applications.",
102
-
description:
103
-
"Daniel is a respected researcher and instructor with a deep knowledge of neural networks. His publications have contributed valuable insights to the AI community, and he brings this expertise to his teaching.",
104
-
},
105
-
];
44
+
},[]);
106
45
46
+
if(loading){
47
+
return<div>Loading...</div>;
48
+
}
49
+
107
50
return(
108
51
<div
109
52
data-scroll-section
@@ -118,44 +61,44 @@ function Staff() {
118
61
<p>Information about our experienced instructors and staff members.</p>
0 commit comments