-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
1202 lines (1140 loc) · 64.4 KB
/
team.html
File metadata and controls
1202 lines (1140 loc) · 64.4 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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html lang="en">
<head>
<meta charset="utf-8">
<title>Team | Kiwrious</title>
<meta name="description" content="Kiwrious empowers kids to explore the world around them and makes scientific inquiry fun. It is a kit of 8 sensors that connect to an online sharing platform.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Kiwrious">
<meta property="og:description" content="Kiwrious empowers kids to explore the world around them and makes scientific inquiry fun. It is a kit of 8 sensors that connect to an online sharing platform.">
<meta property="og:image" content="https://cdn.auckland.ac.nz/aem/content/auckland/en/news/2020/08/28/lab-in-a-pocket-makes-scientific-inquiry-fun/jcr:content/leftpar/imagecomponent_1520692501/image.img.1024.medium.jpg">
<meta property="og:url" content="https://kiwrious.com">
<meta property="og:site_name" content="Kiwrious">
<meta name="twitter:title" content="Kiwrious">
<meta name="twitter:description" content="Kiwrious empowers kids to explore the world around them and makes scientific inquiry fun. It is a kit of 8 sensors that connect to an online sharing platform.">
<meta name="twitter:image" content="https://cdn.auckland.ac.nz/aem/content/auckland/en/news/2020/08/28/lab-in-a-pocket-makes-scientific-inquiry-fun/jcr:content/leftpar/imagecomponent_1520692501/image.img.1024.medium.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:alt" content="Kiwrious">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel="manifest" href="img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/boostrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/team.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.typekit.net/ekz0aha.css">
<!-- <link rel="stylesheet" href="css/hover.min.css"/>-->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<div class="container-fluid mx-0 px-0">
<div class="container-fluid p-0 main-body">
<nav class="top-navbar">
<a href="/" class="navbar-left">
<img class="navbar-logo" src="img/Kiwrious_logo_white_wide.svg" alt="Kiwrious">
</a>
<div class="navbar-right">
<!-- <a class="btn btn-link btn-login d-none d-lg-inline-flex" href="/login.html">-->
<!-- Login-->
<!-- </a>-->
<a class="btn btn-outline-light btn-register d-none d-lg-inline-flex" href="/register.html">
Register Interest
</a>
<a class="btn btn-link btn-login d-lg-none d-xl-none" href="/register.html">
Register
</a>
<button class="btn btn-link btn-menu d-lg-none d-xl-none navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<img src="img/menu_icon.svg" alt="Menu" />
</button>
</div>
</nav>
<div class="collapse navbar-collapse bg-dark px-3 d-lg-none" id="navbarCollapse">
<div class="mobile-nav-header">
<div>
<img src="img/Kiwrious_logo_white_wide.svg" alt="Kiwrious" />
</div>
<button class="btn btn-link btn-menu d-lg-none d-xl-none navbar-toggler d-flex justify-content-center align-content-center" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<img class="btn-close" src="img/plus_thin.svg" alt="Menu" />
</button>
</div>
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Meet Kiwrious</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#news">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#team">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/register.html">Register Interest</a>
</li>
<!-- <li class="nav-item">-->
<!-- <a class="nav-link" href="/login.html">Login</a>-->
<!-- </li>-->
</ul>
<div class="social">
<a href="https://www.facebook.com/Kiwrious" target="_blank">
</a>
<a href="https://twitter.com/kiwrious" target="_blank">
</a>
<a href="https://instagram.com/kiwrious" target="_blank">
</a>
<a href="https://www.youtube.com/channel/UCub9PeFM-4-FOD8LzRGACQQ" target="_blank">
</a>
</div>
</div>
<div class="container-fluid main-container">
<h2>Our Team</h2>
<div class="avatar-container row mx-0 px-0 mt-5">
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#suranga">
<img src="img/avatars/suranga.png" alt="Suranga">
<img class="plus-icon" src="img/plus.svg" alt="Sonia">
</div>
<h6>Suranga Nanayanakkara</h6>
<p>Founder</p>
<div class="social">
<a href="https://www.linkedin.com/in/suranga-nanayakkara-142b7527/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#dawn">
<img src="img/avatars/dawn.png" alt="Dawn">
<img class="plus-icon" src="img/plus.svg" alt="Dawn">
</div>
<h6>Dawn Garbett</h6>
<p>Educational Leader</p>
<div class="social">
<a href="https://www.linkedin.com/in/dawn-garbett-a71a231b/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#sonia">
<img src="img/avatars/sonia.png" alt="Sonia">
<img class="plus-icon" src="img/plus.svg" alt="Sonia">
</div>
<h6>Sonia Dupuch</h6>
<p>Business Development</p>
<div class="social">
<a href="https://www.linkedin.com/in/sonia-dupuch" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#yvonne">
<img src="img/avatars/yvonne.png" alt="Yvonne">
<img class="plus-icon" src="img/plus.svg" alt="Yvonne">
</div>
<h6>Yvonne Chua</h6>
<p>Lead Designer</p>
<div class="social">
<a href="https://www.linkedin.com/in/yvonne-chua/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#juan">
<img src="img/avatars/juan.png" alt="Juan">
<img class="plus-icon" src="img/plus.svg" alt="Juan">
</div>
<h6>Juan Pablo Forero Cortés</h6>
<p>Embedded Systems Engineer</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#chamod">
<img src="img/avatars/chamod.png" alt="Chamod">
<img class="plus-icon" src="img/plus.svg" alt="Chamod">
</div>
<h6>Chamod Weerasinghe</h6>
<p>Embedded Systems Engineer</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#haimo">
<img src="img/avatars/haimo.png" alt="Haimo">
<img class="plus-icon" src="img/plus.svg" alt="Haimo">
</div>
<h6>Haimo Zhang</h6>
<p>Research Fellow</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#sankha">
<img src="img/avatars/sankha.png" alt="Sankha">
<img class="plus-icon" src="img/plus.svg" alt="Sankha">
</div>
<h6>Sankha Cooray</h6>
<p>Software Engineer</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#qin">
<img src="img/avatars/qin.png" alt="Qin">
<img class="plus-icon" src="img/plus.svg" alt="Qin">
</div>
<h6>Qin Wu</h6>
<p>Designer</p>
<div class="social">
<a href="https://www.linkedin.com/in/qin-wu-9a0ba398/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#jiashuo">
<img src="img/avatars/jiashuo.png" alt="Jiashuo">
<img class="plus-icon" src="img/plus.svg" alt="Jiashuo">
</div>
<h6>Jiashuo Cao</h6>
<p>Software Engineer</p>
<div class="social">
<a href="https://www.linkedin.com/in/jiashuocao/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#deviana">
<img src="img/avatars/deviana.png" alt="Deviana">
<img class="plus-icon" src="img/plus.svg" alt="Deviana">
</div>
<h6>Deviana Reis</h6>
<p>Curriculum Developer</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#andrew">
<img src="img/avatars/andrew.png" alt="Andrew">
<img class="plus-icon" src="img/plus.svg" alt="Andrew">
</div>
<h6>Andrew Reis</h6>
<p>Software Engineer</p>
<div class="social">
<a href="https://www.linkedin.com/in/andrewreis/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#priyarshi">
<img src="img/avatars/priyarshi.png" alt="Priyarshi">
<img class="plus-icon" src="img/plus.svg" alt="Priyarshi">
</div>
<h6>Priyashri Shridhar</h6>
<p>UX Researcher</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#phil">
<img src="img/avatars/phil.png" alt="Phil">
<img class="plus-icon" src="img/plus.svg" alt="Phil">
</div>
<h6>Phil M. Scholl</h6>
<p>Research Fellow</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#fiona">
<img src="img/avatars/fiona.png" alt="Fiona">
<img class="plus-icon" src="img/plus.svg" alt="Fiona">
</div>
<h6>Fiona Taimana</h6>
<p>Marketing</p>
<div class="social">
<a href="https://www.linkedin.com/in/fionacoetaimana/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#alaeddin">
<img src="img/avatars/alaeddin.png" alt="Alaeddin">
<img class="plus-icon" src="img/plus.svg" alt="Alaeddin">
</div>
<h6>Alaeddin Nassani</h6>
<p>Software Engineer</p>
<div class="social">
<a href="https://nz.linkedin.com/in/nassani" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#elliott">
<img src="img/avatars/elliott.png" alt="Elliott">
<img class="plus-icon" src="img/plus.svg" alt="Elliott">
</div>
<h6>Elliott Wen</h6>
<p>Software Engineer</p>
<div class="social">
<a href="https://www.linkedin.com/in/elliott-wen-b0a77686/" target="_blank">
</a>
</div>
</div>
<div class="avatar-block col-lg-4 col-md-6 col-xl-3">
<div class="avatar-thumb" data-toggle="modal" data-target="#xinke">
<img src="img/avatars/xinke.png" alt="Xinke">
<img class="plus-icon" src="img/plus.svg" alt="Xinke">
</div>
<h6>Xinke Wu</h6>
<p>Design Intern</p>
<div class="social">
<a href="#" target="_blank">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="bottom">
<div class="content">
<a href="/" class="logo">
<img class="navbar-logo" src="img/Kiwrious_logo_white_wide.svg" alt="Kiwrious">
</a>
<div class="links justify-content-center">
<!-- <a href="">Contact Us</a>-->
<!-- <a href="/#news">News</a>-->
<!-- <a href="/#team">Our Team</a>-->
<!-- <a href="#">Buy one / Give one</a>-->
<a href="register.html">Register Interest</a>
</div>
<div class="social">
<a href="https://www.facebook.com/Kiwrious" target="_blank">
</a>
<a href="https://twitter.com/kiwrious" target="_blank">
</a>
<a href="https://instagram.com/kiwrious" target="_blank">
</a>
<a href="https://www.youtube.com/channel/UCub9PeFM-4-FOD8LzRGACQQ" target="_blank">
</a>
</div>
</div>
<div class="copyright">
<p>2020 © Kiwrious Ltd.</p>
<a class="btn" data-toggle="modal" data-target="#privacy-policy">Privacy Policy</a>
</div>
</div>
</div>
<!-- Modals -->
<div class="modal fade team-modal" id="suranga" tabindex="-1" role="dialog" aria-labelledby="dawnModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#suranga">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/suranga.png" alt="Dawn">
</div>
<div class="col-md-8">
<h4 class="name">Suranga Nanayanakkara</h4>
<p class="profession">Founder</p>
<div class="social">
<a href="https://www.linkedin.com/in/suranga-nanayakkara-142b7527/" target="_blank">
</a>
</div>
<div class="content">
<p>
Associate Professor Suranga Nanayanakkara founded the "Augmented Human Lab" to explore ways of creating ‘enabling’ human-computer interfaces as natural extensions of our body, mind and behaviour. His experience in running a national science experiment project in Singapore and conducting design thinking workshops are directly relevant to the Kiwrious project. Suranga has drawn together a team of experts who share his vision to create a truly innovative and exciting project that will revolutionise the way young students engage with science. He is undoubtedly the driving force and mastermind.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="dawn" tabindex="-1" role="dialog" aria-labelledby="dawnModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#dawn">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/dawn.png" alt="Dawn">
</div>
<div class="col-md-8">
<h4 class="name">Dawn Garbett</h4>
<p class="profession">Educational Leader</p>
<div class="social">
<a href="https://www.linkedin.com/in/dawn-garbett-a71a231b/" target="_blank">
</a>
</div>
<div class="content">
<p>
Associate Professor Dawn Garbett is a teacher educator in the Faculty of Education and Social Work and honorary Queen of Kiwrious. She is passionate about making science relevant and authentic for all students. Kiwrious grabbed her attention from its inception. She has supported the development of resources and challenges on the Inquiry Editor. With this tool kit, students can investigate and inquire about questions that intrigue, concern, amaze and inspire them. Arise, creative scientists!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="sonia" tabindex="-1" role="dialog" aria-labelledby="soniaModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#sonia">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/sonia.png" alt="Sonia">
</div>
<div class="col-md-8">
<h4 class="name">Sonia Dupuch</h4>
<p class="profession">Business Development</p>
<div class="social">
<a href="https://www.linkedin.com/in/sonia-dupuch" target="_blank">
</a>
</div>
<div class="content">
<p>
Sonia completed her Master of Engineering in Telecommunication Systems from ESIEE-Paris. She worked in five different countries for diverse international companies and spent 10 years in Silicon Valley, California working on inspiring projects in the semiconductor and consumer electronic field. Even though she was surrounded by innovation and technology for all those years, she has returned to New Zealand to share her passion for Science and to introduce all the exciting facets of the STEAM fields to young and curious minds. She founded the TestPod Ltd in 2014 and joined AHLAB in 2020 to be part of the Kiwrious project.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="yvonne" tabindex="-1" role="dialog" aria-labelledby="yvonneModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#yvonne">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/yvonne.png" alt="Yvonne">
</div>
<div class="col-md-8">
<h4 class="name">Yvonne Chua</h4>
<p class="profession">Lead Designer</p>
<div class="social">
<a href="https://www.linkedin.com/in/yvonne-chua/" target="_blank">
</a>
</div>
<div class="content">
<p>
Yvonne has a ME (Engineering) from University of Auckland, BA (Industrial Design) from the National University of Singapore. She believes in creating products that have a tangible impact on users' lives. Before joining AHLab she worked as a product and UX designer in Tware, a haptic wearable technology startup making smart pressure jackets for individuals with sensory processing disorders. Her Masters research was on immersive technology for children’s learning. Yvonne is working offshore in Singapore and is the lead designer of Kiwrious.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="juan" tabindex="-1" role="dialog" aria-labelledby="juanModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#juan">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/juan.png" alt="Juan">
</div>
<div class="col-md-8">
<h4 class="name">Juanpa Pablo Forero Cortés</h4>
<p class="profession">Embedded Systems Engineer</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/yvonne-chua/" target="_blank">-->
<!-- </a>-->
<!-- </div>-->
<div class="content">
<p>
Juanpa is a Firmware and Electronics Research Engineer in the Augmented Human Lab at SUTD University in Singapore. After three years, he joined the Think Tank Team in Samsung Research America, where he was exposed to cutting-edge technologies, perspectives and ideas that expanded all his boundaries and refined his competences and technical skills.
</p>
<p>
Finally, following his desire to challenge his perspectives once again and wanting to deepen in the understanding of the capabilities of human potential, he joined the augmented human Lab in the Bioengineering Institute of the University of Auckland in New Zealand where he is currently working as a Research Engineer and pursuing his Master's Degree.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="chamod" tabindex="-1" role="dialog" aria-labelledby="chamodModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#chamod">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/chamod.png" alt="Chamod">
</div>
<div class="col-md-8">
<h4 class="name">Chamod Weerasinghe</h4>
<p class="profession">Embedded Systems Engineer</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/yvonne-chua/" target="_blank">-->
<!-- </a>-->
<!-- </div>-->
<div class="content">
<p>
Chamod grew up in Colombo. He completed his bachelor's degree in Electronics and Telecommunication Engineering from the University of Moratuwa, Sri Lanka. He joined the Augmented Human Lab at SUTD as a research intern in 2016 and is currently working as a Research Engineer while pursuing his master’s degree.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="haimo" tabindex="-1" role="dialog" aria-labelledby="haimoModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#haimo">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/haimo.png" alt="Haimo">
</div>
<div class="col-md-8">
<h4 class="name">Haimo Zhang</h4>
<p class="profession">Research Fellow</p>
<div class="social">
<a href="https://www.linkedin.com/in/yvonne-chua/" target="_blank">
</a>
</div>
<div class="content">
<p>
Haimo obtained his PhD in computer science from the NUS-HCI lab, National University of Singapore. His research interest is in human-computer interactions, and specifically in enhancing human experiences and capabilities in daily lives, through the use of wearable sensing and haptic technologies.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="sankha" tabindex="-1" role="dialog" aria-labelledby="sankaModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#sankha">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/sankha.png" alt="Sankha">
</div>
<div class="col-md-8">
<h4 class="name">Sankha Cooray</h4>
<p class="profession">Software Engineer</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/yvonne-chua/">-->
<!-- <img src="img/icon_linkedin.svg">-->
<!-- </a>-->
<!-- </div>-->
<div class="content">
<p>
Sankha completed his bachelor degree in applied sciences from the University of Sri Jayewardenepura in 2015. He is strongly passionate about AR, VR, MR, BCI, and also capable of learning and applying any kind of technology. After graduation, he has worked in a software company for 4 years. In that company, he has initiated an internal R&D unit and carried out several research projects related to augmented reality, mixed reality and BCI. Some of his spontaneous ideas and implementations have finally become mobile apps and new inventions. Also, he is known as a creative game developer who is inventing new methods for playing electronic games.
</p>
<p>
During his free time, he loves practising music, playing keyboard and writing new concepts.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="qin" tabindex="-1" role="dialog" aria-labelledby="qinModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#qin">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/qin.png" alt="Qin">
</div>
<div class="col-md-8">
<h4 class="name">Qin Wu</h4>
<p class="profession">Designer</p>
<div class="social">
<a href="https://www.linkedin.com/in/qin-wu-9a0ba398/" target="_blank">
</a>
</div>
<div class="content">
<p>
Qin received the M.F.A. degree in information arts and design from Tsinghua University, China, in 2016. Her research interests include human-computer interaction, user experience, and interaction design. In recent two years, Qin is focused on HCI research on Autism Spectrum Disorder (ASD). She is currently a Lecturer at the Department of Computer Science, Chengdu University of Information Technology, China. She is also the Lab director and leads the Interactive Media Studio.Qin grew up in Sichuan, China. In her spare time, she enjoys playing guitar and football.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="jiashuo" tabindex="-1" role="dialog" aria-labelledby="jiashuoModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#jiashuo">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/jiashuo.png" alt="Jiashuo">
</div>
<div class="col-md-8">
<h4 class="name">Jiashuo Cao</h4>
<p class="profession">Software Engineer</p>
<div class="social">
<a href="https://www.linkedin.com/in/jiashuocao/" target="_blank">
</a>
</div>
<div class="content">
<p>
Jiashuo graduated from Chengdu University and Information Technology with a bachelor degree in computer science in 2018, and is now a Master student in Augmented Human Lab, University of Auckland. During his college years, he joined the Interactive Media Studio and participated in some projects related to Machine Learning and Human-Computer Interaction, which is also his interest. In his spare time, Jiashuo loves music and games, especially Nintendo games.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="deviana" tabindex="-1" role="dialog" aria-labelledby="devianaModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#deviana">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/deviana.png" alt="Deviana">
</div>
<div class="col-md-8">
<h4 class="name">Deviana Reis</h4>
<p class="profession">Curriculum Developer</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/jiashuocao/">-->
<!-- <img src="img/icon_linkedin.svg">-->
<!-- </a>-->
<!-- </div>-->
<div class="content">
<p>
Deviana is an educator who specializes in primary education and curriculum development. Her credentials include an MA in Curriculum and Teaching from Teachers College, Columbia University as well as a BA in (Developmental) Psychology and Criminology from the University of Melbourne. She is passionate about inclusive education and adopts a culturally responsive stance that reflects well within her work. Prior to joining the Augmented Human Lab (AHLab) of Auckland University's Bioengineering Institute, she taught in public schools across New York City. She currently assists the department through her involvement in Project Kiwrious, where she develops STEM-focused curriculum along with other student-teacher engagements. During her time off, Deviana enjoys hosting gatherings, travelling, Brazilian Jiujitsu and Dota2.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="andrew" tabindex="-1" role="dialog" aria-labelledby="andrewModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#andrew">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/andrew.png" alt="Andrew">
</div>
<div class="col-md-8">
<h4 class="name">Andrew Reis</h4>
<p class="profession">Software Engineer</p>
<div class="social">
<a href="https://www.linkedin.com/in/andrewreis/" target="_blank">
</a>
</div>
<div class="content">
<p>
Andrew Reis is a software engineer and financial analyst who is currently completing a Masters of Engineering at the University of Auckland and working in the field of Artificial Intelligence. He has extensive experience working in the investment banking industry in Asia and North America and will be working in high-frequency trading as an AI and software engineer. His research interests include Affective Computing, Human-Computer Interaction and Deep Neural Networks.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="priyarshi" tabindex="-1" role="dialog" aria-labelledby="priyarshiModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#priyarshi">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/priyarshi.png" alt="Priyarshi">
</div>
<div class="col-md-8">
<h4 class="name">Priyashri Shridhar</h4>
<p class="profession">UX Researcher</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/andrewreis/">-->
<!-- <img src="img/icon_linkedin.svg">-->
<!-- </a>-->
<!-- </div>-->
<div class="content">
<p>
Priya enjoys working with children to understand their ways of learning and to show the difference that good orchestration of technology brings to learning. Naturally she is excited to be part of the wonderful Kiwrious team with whom she shares her passion. She has a PhD at the intersection of education and human computer interaction and her work focussed on understanding learning with a broader view towards designing effective pedagogies and cutting edge environments. She currently works as an educational technology consultant with University College London on projects geared towards implementation of technology in classrooms. She is also the lead user experience researcher with British Airways Digital. But what she enjoys most is working with teams and design-led cultures that in many different ways challenge the world we live in.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="phil" tabindex="-1" role="dialog" aria-labelledby="philModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#phil">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/phil.png" alt="Phil">
</div>
<div class="col-md-8">
<h4 class="name">Phil M. Scholl</h4>
<p class="profession">Research Fellow</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/andrewreis/">-->
<!-- <img src="img/icon_linkedin.svg">-->
<!-- </a>-->
<!-- </div>-->
<div class="content">
<p>
Philipp M. Scholl is currently a visiting Research Fellow at the Bioengineering Institute at the University of Auckland. He also holds a position as an academic officer at the University of Freiburg, Germany. Before he worked at the University of Darmstadt, and University of Lancaster.
Phil received his doctoral degree from the University of Freiburg, and a Diploma in Computer Science from the Karlsruhe Institute of Technology (KIT). He is a lecturer on Embedded Systems, Computer Architecture and Wearable Computing.
Since 2012, Phil researches in the area of Wearable and Ubiquitous Computing with a focus on Activity Recognition from wearable computers, and human augmentation.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="fiona" tabindex="-1" role="dialog" aria-labelledby="fionaModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#fiona">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/fiona.png" alt="Fiona">
</div>
<div class="col-md-8">
<h4 class="name">Fiona Taimana</h4>
<p class="profession">Marketing</p>
<div class="social">
<a href="https://www.linkedin.com/in/fionacoetaimana/" target="_blank">
</a>
</div>
<div class="content">
<p>
Fiona completed her Masters in Commercialisation and Entrepreneurship at the University Of Auckland Graduate School Of Management in 2020. An experienced creative thinker, she is passionate about innovation and entrepreneurial thinking. Fiona has led marketing, training and customer experience teams in the United Arab Emirates, India, Middle East and New Zealand. She now wishes to share her experience with Kiwrious to make science and technology accessible to the next generation, so they can create amazing discoveries to protect their future.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="alaeddin" tabindex="-1" role="dialog" aria-labelledby="alaeddinModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#alaeddin">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/alaeddin.png" alt="Alaeddin">
</div>
<div class="col-md-8">
<h4 class="name">Alaeddin Nassani</h4>
<p class="profession">Software Engineer</p>
<div class="social">
<a href="https://nz.linkedin.com/in/nassani" target="_blank">
</a>
</div>
<div class="content">
<p>
Alaeddin Nassani joined the Auckland Bioengineering Institute at the University of Auckland as a research fellow working at Augmented Human Lab and the Empathic Computing Lab. He has a background in software development and completed his PhD from the HITLabNZ at the University of Canterbury with a focus on human-computer interaction and augmented reality. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="elliott" tabindex="-1" role="dialog" aria-labelledby="elliottModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#elliott">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/elliott.png" alt="Elliott">
</div>
<div class="col-md-8">
<h4 class="name">Elliott Wen</h4>
<p class="profession">Software Engineer</p>
<div class="social">
<a href="https://www.linkedin.com/in/elliott-wen-b0a77686/" target="_blank">
</a>
</div>
<div class="content">
<p>
Elliott is a computer scientist with broad research interests including Mobile Sensing, Software Engineering, and Computer Networking. He is currently working as a research fellow in AHLab at The University of Auckland. During breaks, He loves exploring compilers, operating system kernels, and RISC-V CPUs. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade team-modal" id="xinke" tabindex="-1" role="dialog" aria-labelledby="xinkeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12 header mx-0 px-0">
<button class="btn btn-link" type="button" data-toggle="modal" data-target="#xinke">
<img src="img/plus.svg">
</button>
</div>
<div class="col-sm-12 col-md-4 mb-sm-2 avatar">
<img class="img-fluid" src="img/avatars/xinke.png" alt="Xinke">
</div>
<div class="col-md-8">
<h4 class="name">Xinke Wu</h4>
<p class="profession">Design Intern</p>
<!-- <div class="social">-->
<!-- <a href="https://www.linkedin.com/in/andrewreis/">-->
<!-- <img src="img/icon_linkedin.svg">-->
<!-- </a>-->
<!-- </div>-->