-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpeople.html
More file actions
424 lines (351 loc) · 27.1 KB
/
people.html
File metadata and controls
424 lines (351 loc) · 27.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<!DOCTYPE html>
<html lang="en">
<head>
<title>BEATLab - People</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.svg">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: "Lato", sans-serif
}
.mySlides {
display: none
}
div {
text-align: justify;
text-justify: inter-word;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
p.title {
text-align: center;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-black w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right"
href="javascript:void(0)" onclick="navToggle()" title="Toggle Navigation Menu"><i
class="fa fa-bars"></i></a>
<a href="index.html" class="w3-bar-item w3-button w3-padding-large">HOME</a>
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-padding-large w3-button" title="Learn">LEARN <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="index.html#about" class="w3-bar-item w3-button">About</a>
<a href="people.html" class="w3-bar-item w3-button">People</a>
<a href="publications.html" class="w3-bar-item w3-button">Publications</a>
<a href="research" class="w3-bar-item w3-button">Research Overview</a>
</div>
</div>
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-padding-large w3-button" title="Connect">CONNECT <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="join.html" class="w3-bar-item w3-button">Join</a>
<a href="participate.html" class="w3-bar-item w3-button">Participate</a>
<a href="donate.html" class="w3-bar-item w3-button">Donate</a>
<a href="contact" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
<!-- <a href="javascript:void(0)" class="w3-padding-large w3-hover-red w3-hide-small w3-right"><i
class="fa fa-search"></i></a> -->
</div>
</div>
<!-- Navbar on small screens (remove the onclick attribute if you want the navbar to always show on top of the content when clicking on the links) -->
<div id="navDemo" class="w3-bar-block w3-black w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:46px">
<a href="people.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">People</a>
<a href="publications.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">Publications</a>
<a href="research.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">Research</a>
<a href="join.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">Join</a>
<a href="participate.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">Participate</a>
<a href="donate.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">Donate</a>
<a href="contact.html" class="w3-bar-item w3-button w3-padding-large" onclick="navToggle()">Contact</a>
</div>
<!-- Page content -->
<div class="w3-content" style="max-width:100%;margin-top:92px">
<!-- The People Section -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:70%" id="people">
<h1 class="w3-wide" style="text-align:center";>PEOPLE</h1>
<p class="w3-opacity" style="text-align:center";><i>Who we are</i></p>
<!-- Group Photos -->
<div class="mySlides w3-display-container w3-center">
<img src="images/bl_ll.jpg" style="width:100%">
<div class="w3-display-bottommiddle w3-container w3-text-white w3-padding-32 w3-hide-small">
<!-- <h3>BEATLab 2024 + LIVELab staff</h3> -->
<!-- <p><b>BEATLab 2024 + LIVELab staff</b></p> -->
</div>
</div>
<div class="mySlides w3-display-container w3-center">
<img src="images/group_dinner.jpg" style="width:100%">
<div class="w3-display-bottommiddle w3-container w3-text-white w3-padding-32 w3-hide-small">
</div>
</div>
<div class="mySlides w3-display-container w3-center">
<img src="images/banff_group.jpg" style="width:100%">
<div class="w3-display-bottommiddle w3-container w3-text-white w3-padding-32 w3-hide-small">
</div>
</div>
<div class="mySlides w3-display-container w3-center">
<img src="images/neuromusic.jpg" style="width:100%">
<div class="w3-display-bottommiddle w3-container w3-text-white w3-padding-32 w3-hide-small">
</div>
</div>
<div class="mySlides w3-display-container w3-center">
<img src="images/voices_setup.jpg" style="width:100%">
<div class="w3-display-bottommiddle w3-container w3-text-white w3-padding-32 w3-hide-small">
</div>
</div>
<div class="w3-row w3-padding-32" id="people">
<div class="w3-quarter">
<p class="title"> <strong> Director: </strong> <br> Prof. Dr. Lauren Fink</p>
<img src="images/lauren_resized.jpg" class="center person-photo" alt="Lauren Fink">
<p style="padding: 1em;" style="text-align: justify;">
I'm an asst. Professor in the Dept. of Psychology, Neuroscience & Behaviour, also affiliated with the McMaster Insitute for Music & the Mind, the School of Computational Science & Engineering, the Neuroscience Graduate Program, and the Centre for Advanced Research in Experimental and Applied Linguistics. Prior to coming to McMaster and starting the BEAT Lab, I lived in Germany, California, England, and Ohio. My training as an orchestral percussionist with a focus on "experimental music" informs many of my research interests. I'm grateful to have the opportunity to work with incredible students and collaborators at McMaster and across the globe!
<br><br>
<a href="assets/Lauren_Fink_CV.pdf" target="_blank">CV</a> |
<a href="https://www.linkedin.com/in/lauren-fink-2ba747109/" target="_blank">LinkedIn</a> |
<a href="https://twitter.com/LaurenFink_PhD" target="_blank">Twitter</a>
</p>
</div>
<div class="w3-quarter">
<p class="title"> <strong> PhD Student: </strong> <br> Shreshth Saxena</p>
<img src="images/shreshth_resized_noBG.png" class="center person-photo" alt="Shreshth Saxena">
<p style="padding: 1em;" style="text-align: justify;">
I'm interested in scalable methods of eye-tracking and their application to study audiovisual attention in dynamic real-world, music listening contexts. Prior to my Ph.D., I graduated with a Bachelors and Masters in Computer Science from University of Delhi, India, and gained valuable experience working as a Computer Vision developer in the industry. I'm always excited to discuss accessible technologies, mathematical/programming challenges, retro games and guitar riffs!
<br><br>
<a href="assets/Shreshth_Saxena_CV.pdf" target="_blank">CV</a> |
<a href="https://www.linkedin.com/in/shreshthsaxena" target="_blank">LinkedIn</a> |
<a href="https://twitter.com/shreshth_saxena" target="_blank">Twitter</a>
</p>
</div>
<div class="w3-quarter">
<p class="title"> <strong> PhD Student: </strong> <br> Maya Flannery</p>
<!-- TODO bios in pop up tooltip on new page? -->
<!-- <img src="images/maya.jpg" class="center person-photo" alt="Maya Flannery" style="width:36%" style="height:20%"> -->
<img src="images/maya.jpg" class="center person-photo" alt="Maya Flannery">
<p style="padding: 1em;" style="text-align: justify;">
I am interested in understanding how and why we like music through individual listening experiences. I have completed a BA and MSc in Psychology, Neuroscience & Behaviour at McMaster University with a specialization in music cognition. Throughout my studies, I have developed a strong interest in Open Science issues and in creating an inclusive and accessible scientific community for everyone. Outside of academia, I am an amateur musician, enjoy being outdoors, and love sci-fi, fantasy and role-playing games.
<br><br>
<a href="https://mayabflannery.github.io/" target="_blank">Website</a> |
<a href="https://www.linkedin.com/in/mayabflannery/" target="_blank">LinkedIn</a> |
<a href="https://twitter.com/MayaBFlannery" target="_blank">Twitter</a>
</p>
</div>
<div class="w3-quarter">
<p class="title"> <strong> PhD Student: </strong> <br>Alexander Nguyen</p>
<img src="images/NguyenAlexander-headshot_120.jpg" class="center person-photo" alt="Alexander Nguyen">
<div>
<p style="padding: 1em;" style="text-align: justify;">
I’m interested in basic and multimodal research in the context of human musical engagement. Currently, I’m investigating how different signals and modalities predict subjective states during musical interaction, and comparing computational models of musical expectation. Before joining BEATLab, I studied Music Informatics at Karlsruhe University of Music (Germany), focusing on live electronics, Ambisonics, and spherical microphone and loudspeaker arrays. I have professional experience as a full-stack developer and system administrator in telecommunications and digital humanities. I enjoy bridging digital technology with scientific and philosophical inquiry related to music cognition and value moments of insight—especially those that reveal I had misunderstood something without even realizing it. Outside of research, I occasionally play the piano.
<br><br>
<!-- <a href="https://j0shisisland.github.io/" target="_blank">Website</a> | -->
<!-- <a href="https://www.linkedin.com/in/alexander-nguyen-a54003266/" target="_blank">LinkedIn</a> | -->
<!-- <a href="https://twitter.com/j0shisIsland" target="_blank">Twitter</a> -->
</p>
</div>
</div>
</div>
</div>
<!-- The Alumni Section -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:70%" id="people">
<h1 class="w3-wide" style="text-align:center";>ALUMNI</h1>
<p class="w3-opacity" style="text-align:center";><i>Everyone who has helped shape the lab!</i></p>
<section id="dropdowns">
<!-- <toggle-section open="false">
<h2 id="GS">Graduate students</h2>
<div>
<p> <a href="https://www.linkedin.com/in/joshua-schlichting-9664a0216/" target="_blank">Joshua Schlichting</a> (masters): TODO insert thesis title and link
</p>
</div>
</toggle-section> -->
<toggle-section open="true">
<h2 id="UG">Graduate students</h2>
<div>
<p>
<a href="https://www.linkedin.com/in/joshua-schlichting-9664a0216/" target="_blank">Joshua Schlichting</a> (PNB '25):
How Music Advocacy Influences Audiences' Prosociality.
<a href="https://macsphere.mcmaster.ca/handle/11375/31588" target="_blank"><i class="fa fa-file-pdf-o w3-hover-opacity"></i></a>
<a href="https://github.com/beatlab-mcmaster/Schlichting_MSc_Thesis" target="_blank"><i class="fa fa-github w3-hover-opacity"></i></a>
</p>
</div>
</toggle-section>
<toggle-section open="true">
<h2 id="UG">Thesis students</h2>
<div>
<!-- <p> <a href="https://www.linkedin.com/in/kyra-bonus/" target="_blank">Kyra Bonus</a> (PNB '25): Maladaptive music listening: A systematic review,
thematic analyses, and meta-analysis
</p> -->
<p>
<a href="https://www.linkedin.com/in/kyra-bonus/" target="_blank">Kyra Bonus</a> (PNB '25):
Maladaptive music listening: A systematic review, thematic analyses, and meta-analysis.
<a href="assets/posters/BonusKyra_thesisPoster.pdf" target="_blank"><i class="fa fa-file-pdf-o w3-hover-opacity"></i></a>
</p>
<p> <a href="https://www.linkedin.com/in/jackson-shi1/" target="_blank">Jackson Shi</a> (PNB '25): AVOKE: an open-source web-based experimentation
toolbox for evoking audiovisual responses.
<a href="assets/posters/ShiJackson_thesisPoster.pdf" target="_blank"><i class="fa fa-file-pdf-o w3-hover-opacity"></i></a>
<a href="https://github.com/beatlab-mcmaster/AVOKE" target="_blank"><i class="fa fa-github w3-hover-opacity"></i></a>
</p>
<p> <a href="https://www.linkedin.com/in/zuhe-liu/" target="_blank">Gloria Liu</a> (PNB '25): The self-reference effect in science communication:
Does personal relevance drive social media engagement?
<a href="assets/posters/LiuGloria_thesisPoster.pdf" target="_blank"><i class="fa fa-file-pdf-o w3-hover-opacity"></i></a>
</p>
<p> <a href="" target="_blank">Megan Klose</a> (PNB '25): The differential effects of active and passive bilateral stimulation.
<a href="assets/posters/KloseMegan_thesisPoster.pdf" target="_blank"><i class="fa fa-file-pdf-o w3-hover-opacity"></i></a>
</p>
<p> <a href="https://www.linkedin.com/in/ahmed-ms11/" target="_blank">Ahmed Saeed</a> (Neuroscience '25): Prosocial effects of manipulated synchrony on co-performers and affiliates.
</p>
<p> <a href="https://www.linkedin.com/in/alador-bereketab-997615217/" target="_blank">Alador Bereketab</a> (Health Sciences '25): The Role of Music in Medicine: Exploring the Neurological Implications of Classical Music Pedagogy Training (CMPT) for Children.
<a href="assets/posters/Bereketab_thesisPoster.pdf" target="_blank"><i class="fa fa-file-pdf-o w3-hover-opacity"></i></a>
</p>
<p> <a href="https://www.linkedin.com/in/mariyah-shaikh-0a8038225/" target="_blank">Mariyah Shaikh</a> (PNB '24): What is the relationship between cardiac interoception, music, and anxiety?
</p>
<p> <a href="https://www.linkedin.com/in/connor-horsley-a3b08b330/" target="_blank">Connor Horsley</a> (Neuroscience '24): Using eye-tracking tools to quantify the relationship between attentional fluctuations and synchronization performance dynamics in an adaptive tapping task.
</p>
<p> <a href="" target="_blank">Catherine Deng</a> (Health Sciences '24): Music description and categorization: A semantic analysis of user-generated tags.
</p>
</div>
</toggle-section>
<toggle-section open="true">
<h2 id="UG">Capstone students</h2>
<div>
<p> <a href="https://www.linkedin.com/in/neil-lobo-937094195/" target="_blank">Neil Lobo</a> (Computer Science '24): Part of <a href="https://arxiv.org/pdf/2407.06345" target="_blank">SocialEyes</a> team
</p>
<p> <a href="https://www.linkedin.com/in/areezvisram/" target="_blank">Areez Visram</a> (Software Engineering '24): Part of <a href="https://arxiv.org/pdf/2407.06345" target="_blank">SocialEyes</a> team
</p>
<p> <a href="https://www.linkedin.com/in/mehak00khan/" target="_blank">Mehak Khan</a> (Software Engineering '24): Part of <a href="https://arxiv.org/pdf/2407.06345" target="_blank">SocialEyes</a> team
</p>
<p> <a href="" target="_blank">Biranugan Pirabaharan</a> (CS '24): Part of <a href="https://arxiv.org/pdf/2407.06345" target="_blank">SocialEyes</a> team
</p>
<p> <a href="https://www.linkedin.com/in/mirzazahid/" target="_blank">Zahid Mirza</a> (Engineering '24): Part of <a href="https://arxiv.org/pdf/2407.06345" target="_blank">SocialEyes</a> team
</p>
<p> <a href="https://www.linkedin.com/in/jaykmody/" target="_blank">Jay Mody</a> (Software Engineering '24): Part of WebSight team (preprint forthcoming)
</p>
<p> <a href="https://www.linkedin.com/in/caitlin-bridel-83bb54152/" target="_blank">Caitlin Bridel</a> (Software Engineering '24): Part of WebSight team (preprint forthcoming)
</p>
<p> <a href="https://www.linkedin.com/in/michelle-domagala-tang/" target="_blank">Michelle Domagala-Tang</a> (Software Engineering & Management '24): Part of WebSight team (preprint forthcoming)
</p>
<p> <a href="https://www.linkedin.com/in/eshaan-chaudhari/" target="_blank">Eshaan Chaudhari</a> (Software Engineering & Management '24): Part of WebSight team (preprint forthcoming)
</p>
</div>
</toggle-section>
<!-- <toggle-section open="true">
<h2 id="ST">Independent study & volunteer students</h2>
<div>
<p> <a href="https://www.linkedin.com/in/sarpalpsoykan/" target="_blank">Sarp Alpsoykan</a> (Neuroscience)
</p>
</div>
</toggle-section> -->
<toggle-section open="true">
<h2 id="UG">Independent study</h2>
<div>
<p> <a href="https://www.linkedin.com/in/alexander-nguyen-a54003266/" target="_blank">Alexander Nguyen</a> (DAAD-funded visiting student '24)
</p>
<p> <a href="https://www.linkedin.com/in/eva-morgand-b71651333/" target="_blank">Eva Morgand</a> (MITACS intern '24)
</p>
<p> <a href="https://www.linkedin.com/in/soley-siegel-b0a501220/?locale=en_US" target="_blank">Soley Siegel</a> (MITACS intern '24)
</p>
<p> <a href="https://www.linkedin.com/in/betul-asdemir-bsa/" target="_blank">Betul Asdemir</a> (PNB independent study '24)
</p>
</div>
</toggle-section>
</div>
</div>
<!--
<h2 class="w3-wide" style="text-align:center">ALUMNI</h2>
<h3 class="w3-wide" style="text-align:center">Bachelor Thesis Students</h3>
<h3 class="w3-wide" style="text-align:center">Capstone Project Students</h3>
<p>Neil Lobo</p>
<h3 class="w3-wide" style="text-align:center">Independent Study Students</h3>
<h3 class="w3-wide" style="text-align:center">Visiting Students & Interns</h3>
<div class="w3-row w3-padding-32" id="people">
<div class="w3-quarter">
<p class="title"> <strong> Capstone Student: </strong> <br> Neil Lobo</p>
<img src="images/neil_resize.jpeg" class="center" alt="Neil Lobo" style="width:60%" style="border-radius:100%">
<p style="padding: 1em;" style="text-align: justify;">
I am a fifth year Computer Science undergraduate student at McMaster University currently working on developing the architecture needed to facilitate the real-time streaming and transformation of eye-tracking data at scale under the supervision of Dr. Lauren Fink and Shreshth Saxena. I enjoy solving the challenges that come with system design and am always eager to learn new tools & technologies to help me achieve that!
<br><br>
<a href="https://www.linkedin.com/in/neil-lobo-937094195/" target="_blank">LinkedIn</a>
</p>
</div>
<div class="w3-quarter">
<p class="title"> <strong> Capstone Student: </strong> <br> Areez Visram</p>
<img src="images/areez_resize.jpeg" class="center" alt="Areez Visram" style="width:60%" style="border-radius:100%">
<p style="padding: 1em;" style="text-align: justify;">
I am a fifth year Software Engineering undergraduate student at McMaster University currently working on developing the architecture needed to facilitate the real-time streaming and transformation of eye-tracking data at scale under the supervision of Dr. Lauren Fink and Shreshth Saxena. I have a keen interest in software design and learning how we can develop software systems to solve complex problems. In my personal life, I'm an avid sports (mainly soccer and hockey) fan and player, and I love reading!
<br><br>
<a href="https://www.linkedin.com/in/areezvisram/" target="_blank">LinkedIn</a>
</p>
</div>
<div class="w3-quarter">
<p class="title"> <strong> Thesis Student: </strong> <br> Mariyah Shaikh</p>
<img src="images/mariyah_resize.jpeg" class="center" alt="Mariyah Shaikh" style="width:60%" style="border-radius:100%">
<p style="padding: 1em;" style="text-align: justify;">
Hi! I’m an undergraduate thesis student in the BEAT lab. I am obsessed with listening to music, which is why I want to better understand what cognitions underlie listening to auditory stimuli, like music. I am excited to learn about the research process and expand my knowledge base in psychology. For fun, I do enjoy baking, however, in my free time I’ll be watching tv :)
<br><br>
</p>
</div>
<div class="w3-quarter">
<p class="title"> <strong> Independent Study Student: </strong> <br>Gloria Lui</p>
<img src="images/gloria_resize.jpeg" class="center" alt="Gloria Lui" style="width:60%" style="border-radius:100%">
<p style="padding: 1em;" style="text-align: justify;">
Greetings! I’m Gloria, a third-year student in the PNB Mental Health program at McMaster University. I’m interested in exploring the connection between music and human cognition, and understanding how they contribute to fostering social cohesion. I’m excited to be part of the BEAT lab, where I delve into the intricate relationship between music and gaze movement. Beyond my academic pursuits, I find immense joy in expressing myself through music, whether it’s singing or playing various instruments. Exploring diverse cuisines and immersing myself in different cultures is another passion of mine.
<br><br>
</p>
</div>
</div>
<div class="w3-row w3-padding-32" id="people">
<div class="w3-third">
<p class="title"> <strong> Independent Study Student: </strong> <br>Betul Asdemir</p>
<img src="images/betul_resize.jpeg" class="center" alt="Betul Asdemir" style="width:60%" style="border-radius:100%">
<p style="padding: 1em;" style="text-align: justify;">
I am a third year Honours Biology and Psychology, Neuroscience & Behaviour student at McMaster University. As an individual who loves to devote her free time to writing and playing songs, I am thrilled to be a part of the BEAT Lab, which merges cognitive neuroscience research with music. I am excited to be working with and learning from this team of brilliant minds!
<br><br>
</p>
</div>
<div class="w3-third">
<p class="title"> <strong> Independent Study Student: </strong> <br>Ahmed Saeed</p>
<img src="images/ahmed_resize.jpeg" class="center" alt="Ahmed Saeed" style="width:60%" style="border-radius:100%">
<p style="padding: 1em;" style="text-align: justify;">
My name is Ahmed and I am a fifth year neuroscience and math student. I am really interested in system’s computational neuroscience and the effect of music on the neurocircuitry of the brain. I also love gaming and playing sports like squash and swimming.
<br><br>
</p>
</div>
<div class="w3-third">
<p class="title"> <strong> Not pictured: </strong>
<br>Connor Horsley (Thesis)
<br>Catherine Deng (Thesis)
<br>Jay Mody (Capstone)
<br>Caitlin Bridel (Capstone)
<br>Michelle Domagala-Tang (Capstone)
<br>Eshaan Chaudhari (Capstone)
<br>Zahid Mirza (Capstone)
<br>Biranugan Pirabaharan (Capstone)
<br>Mehak Khan (Capstone)
<br>Jackson Shi (Independent Study)
<br>Kyra Bonus (Independent Study)
<br>Megan Klose (Independent Study)
</p>
</div>
</div>
</div>
</div> -->
<!-- End Page Content -->
<!-- Footer. -->
<footer class="w3-container w3-center w3-opacity w3-light-grey">
<p class="w3-small" style="text-align:center">© 2025 Lauren Fink</p>
<a href="index.html" target="_blank"> <img src="images/bl_logo_v6-cropped.svg" style="width:30%" style="height:30%" style="vertical-align:center"> </a>
</footer>
<script src="toggle.js"></script>
<script src="navToggle.js"></script>
<script src="slideshow.js"></script>
</body>
</html>