@@ -151,6 +151,65 @@ const teamMembers25 = [
151151 } ,
152152]
153153
154+ const teamMembers26 = [
155+ {
156+ name : "Cedric Rische" ,
157+ position : "Team Member" ,
158+ linkedIn : "cedric-rische" ,
159+ profilePicture : CedricRischeProfile2025 ,
160+ } ,
161+ {
162+ name : "Grit Manssen" ,
163+ position : "Team Member" ,
164+ linkedIn : "grit-manssen-0270b023a" ,
165+ profilePicture : GritManssenProfile2025 ,
166+ } ,
167+ {
168+ name : "Tanja Lehmann" ,
169+ position : "Team Member" ,
170+ linkedIn : "tanja-lehmann-36713a265" ,
171+ profilePicture : TanjaLehmannProfile2025 ,
172+ } ,
173+ {
174+ name : "Daniel Kiss" ,
175+ position : "Team Member" ,
176+ linkedIn : "kdaniel21" ,
177+ profilePicture : DanielKissProfile2025 ,
178+ } ,
179+ {
180+ name : "Jeanne Aue" ,
181+ position : "Team Member" ,
182+ linkedIn : "jeanne-aue" ,
183+ profilePicture : JeanneAueProfile2025 ,
184+ } ,
185+ {
186+ name : "Constantin Sachse" ,
187+ position : "Team Member" ,
188+ linkedIn : "" ,
189+ profilePicture : ConstantinSachseProfile2025 ,
190+ } ,
191+ {
192+ name : "Alyssa Hilgendorf" ,
193+ position : "Team Member" ,
194+ linkedIn : "alyssa-hilgendorf-835a45346" ,
195+ } ,
196+ {
197+ name : "Henri Becker" ,
198+ position : "Team Member" ,
199+ linkedIn : "henri-aldo-becker-06a265297" ,
200+ } ,
201+ {
202+ name : "Jolanda Bolt" ,
203+ position : "Team Member" ,
204+ linkedIn : "jolanda-bolt-6480a5222" ,
205+ } ,
206+ {
207+ name : "Klara Prigge" ,
208+ position : "Team Member" ,
209+ linkedIn : "klara-luise-prigge-8b73a830a" ,
210+ } ,
211+ ] ;
212+
154213
155214function stringToColor ( string ) {
156215 let hash = 0 ;
@@ -194,7 +253,7 @@ function Team() {
194253 < Container sx = { { paddingTop : 10 , paddingBottom : 10 } } >
195254 < Typography variant = { "h2" } component = { "h1" } gutterBottom > Meet the team</ Typography >
196255 < Grid container spacing = { 3 } >
197- { teamMembers25 . sort ( ( a , b ) => {
256+ { teamMembers26 . sort ( ( a , b ) => {
198257 const nameA = a . name . toUpperCase ( ) ; // ignore upper and lowercase
199258 const nameB = b . name . toUpperCase ( ) ; // ignore upper and lowercase
200259 if ( nameA < nameB ) {
@@ -223,7 +282,7 @@ function Team() {
223282 justifyContent : "center" ,
224283 } }
225284 >
226- < Avatar src = { teamMember . profilePicture . src } sx = { {
285+ < Avatar src = { teamMember . profilePicture ? .src } sx = { {
227286 height : imageSize ,
228287 width : imageSize ,
229288 boxShadow : 7 ,
@@ -265,4 +324,4 @@ function Team() {
265324
266325}
267326
268- export default Team
327+ export default Team
0 commit comments