forked from ugahacks/ugahacks-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3606 lines (3572 loc) · 150 KB
/
index.html
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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<title>UGAHacks</title>
<meta name="description" content="UGAHacks is a 501 (c)(3) organization that hosts an annual 48-hour programming hackathon that takes place in Athens, Georgia at the University of Georgia." />
<meta charset="utf-8" />
<meta property='og:title' content="UGAHacks"/>
<meta property='og:image' content="https://www.ugahacks.com/img/mobilelaptop.png">
<meta property="og:url" content="https://ugahacks.com">
<meta property="og:type" content="website">
<meta name="theme-color" content="#21232c">
<link rel="apple-touch-icon" sizes="180x180" href="icons/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicons/favicon-16x16.png">
<link rel="manifest" href="icons/favicons/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<!-- Bootstrap for Centered Pill Tabs -->
<!-- not using: <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> -->
<!-- <link rel="stylesheet" href="https://toert.github.io/Isolated-Bootstrap/versions/4.1.0/iso_bootstrap4.1.0min.css">
DELAY THIS ASSET LOAD SINCE IT ONLY PERTAINS TO CONTACT US MODAL:-->
<!-- <link rel="preload" href="https://toert.github.io/Isolated-Bootstrap/versions/4.1.0/iso_bootstrap4.1.0min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://toert.github.io/Isolated-Bootstrap/versions/4.1.0/iso_bootstrap4.1.0min.css"></noscript> -->
<link href="style/bootstrap-iso.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:200,100,400" rel="stylesheet" type="text/css" />
<link href="style/hamburger.css" rel="stylesheet" type="text/css" />
<link href="style/main.css" rel="stylesheet" type="text/css" />
<link href="style/main.mobile.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/base-min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-responsive-min.css" />
<!-- Scrolling animatons -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- Hotjar Tracking Code for https://ugahacks.com/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1566634,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</head>
<body>
<nav>
<ul class='menu'>
<li class='logo'><a data-link="">UGAHacks</a></li>
<li><a data-link="about">About US</a></li>
<li><a data-link="timeline">Events</a></li>
<li><a data-link="team">Team</a></li>
<li><a href="//blog.ugahacks.com">Blog</a></li>
<li><a href="https://ugahacks.com/contact">Contact</a></li>
</ul>
<div class='social'>
<button class="hamburger hamburger--collapse mobile-only menu-toggle" type="button">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<a href="https://www.facebook.com/ugahacks" target="_BLANK"><div class='icon icon-facebook'></div></a>
<a href="https://www.instagram.com/ugahacks/" target="_BLANK"><div class='icon icon-instagram'></div></a>
<a href="https://github.com/ugahacks" target="_BLANK"><div class='icon icon-github'></div></a>
<a href="https://twitter.com/ugahacks" target="_BLANK"><div class='icon icon-twitter'></div></a>
</div>
<div style="clear:both"></div>
</nav>
<!-- Modal -->
<!-- -->
<div class="site-content">
<section class="header">
<div class="laptop left"></div>
<img id="laptopmobile" src="img/mobilelaptop.png" alt="Laptop">
<div class="inspiration right">
<h1>Boot up your dreams.
<br>
<span class="txt-rotate" data-period="2000"
data-rotate='[ "Create.", "Inspire.", "Code."]'></span>
</h1>
<div class="btn-container">
<a data-link="about"><button class="splashbtn">Learn more about us</button></a>
</div>
</div>
</section>
<section data-section="about" class="about-container">
<div class="about-text">
<h1>About Us<span></span></h1>
<div data-aos="fade-right" data-aos-once="true" class="">
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="0">
UGAHacks is a 501 (c)(3) non-profit organization that hosts an annual 48 hour programming sleepover which takes place in Athens, Georgia at the University of Georgia.
</p>
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="50">UGAHacks is an event that prides itself as being like none other where hackers, sponsors, and mentors can come together and not only have an environment to work and create anything their mind can think of but also enjoy their time while they are there.</p>
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="100">UGAHacks has seen tremendous growth since its inception in 2015. We have grown from 200 hackers, 6 sponsors, and less than 10 mentors to 600+ hackers, 15+ sponsors, and 15+ mentors.</p>
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="150">Every year there is a new adventure to explore and new prizes to be won. Each event encompasses different people to meet, workshops to learn from, food to enjoy, and side events to take some time to relax.</p>
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="200"></p>
</div>
<br>
<div data-aos="fade-left" data-aos-delay="300" data-aos-once="true">
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="250">We also have become a recognizable brand with the cutest mascot, Byte, who is seen making an appearance at every event we have since 2019.</p>
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="300">We are always looking for new partners and new people to be apart of our event each year in order to make it even better than the last and give them an opportunity to tap into recruiting up-and-coming computer science talent, so if you are interested, please feel free to <a class="about-link" href="https://www.ugahacks.com/contact">reach out to us.</a></p>
<p data-aos="fade-right" data-aos-once="true" data-aos-delay="350">As an organization, we take great pride in our growth and are excited to see our event reach even greater heights.</p>
</div>
</div>
<div class="about-image">
<img src="img/laptopbyte.svg" alt="Byte with a Laptop">
</div>
</section>
<section class="stats-container">
<div data-aos="fade-right" data-aos-delay="150" data-aos-once="true" class="stats-body">
<div class="stats-value">
25+
</div>
<div class="stats-name">
Schools Represented
</div>
</div>
<div data-aos="fade-right" data-aos-delay="300" data-aos-once="true" class="stats-body">
<div class="stats-value">
1600+
</div>
<div class="stats-name">
Hackers
</div>
</div>
<div data-aos="fade-right" data-aos-delay="450" data-aos-once="true" class="stats-body">
<div class="stats-value">
220+
</div>
<div class="stats-name">
Projects
</div>
</div>
<div data-aos="fade-right" data-aos-delay="600" data-aos-once="true" class="stats-body">
<div class="stats-value">
40+
</div>
<div class="stats-name">
Organizers
</div>
</div>
<div data-aos="fade-right" data-aos-delay="750" data-aos-once="true" class="stats-body">
<div class="stats-value">
#19
</div>
<div class="stats-name">
MLH Hackathon Ranking
</div>
</div>
</section>
<section data-section="timeline" id="timeline">
<h1>Past Events<span></span></h1>
<div data-scrollx data-call-on="timelineProgress" style="position: relative;">
<div class='timeline-progress desktop-only'></div>
<div class="event-card-wrapper">
<div class="event-card" data-aos="fade-left" data-aos-once="true">
<div class="card-head">
<div class="number-box">
<span>2021</span>
</div>
<h2>UGAHacks 6</h2>
</div>
<div class="card-body">
<p>UGAHacks 6 was unlike any other previous UGAHacks since it was the first one to be held completely virtually due to Covid-19.
Despite this, a total of 411 participants, 150 sponsors representatives, 10 mentors attended, and there were over <a class="timeline-links" href="https://ugahacks-6.devpost.com/" target="_BLANK">40 project submissions</a>.
The sixth UGAHacks event also saw the use of workshop live streams and 'fireside' broadcasts from the UGAHacks organizers throughout the event. Overall, UGAHacks 6 was themed around 'building the future' and there
was definitely no shortage of innovative ideas built around hardware and the world's ever-changing landscape.</p>
<a href="https://6.ugahacks.com/" target="_BLANK"><img src="img/timeline-photos/hacks6banner.png" alt="UGAHacks 6 Banner"></a>
</div>
</div>
<div class="event-card" data-aos="fade-right" data-aos-once="true" >
<div class="card-head">
<div class="number-box">
<span>2020</span>
</div>
<h2>UGAHacks 5</h2>
</div>
<div class="card-body">
<p>UGAHacks 5 was hosted at the Zell Miller Learning Center, which would become the new home for UGAHacks.
The 5th rendition of UGAHacks was the largest we have seen to date with 500 participants, 14 sponsors,
15 mentors, and a record <a class="timeline-links" href="https://ugahacks5.devpost.com/" target="_BLANK">70 project submissions</a>. UGAHacks 5 was themed around bringing 'otherworldly' ideas to life with
our mascot, Byte, heading to explore space, but from the event perspective UGAHacks 5 could be
considered the 'Launch Pad' that became the new standard for all future UGAHacks events.</p>
<a href="https://5.ugahacks.com/" target="_BLANK">
<img src="img/timeline-photos/hacks5banner.jpg" alt="UGAHacks 5 banner">
</a>
</div>
</div>
<div class="event-card" data-aos="fade-left" data-aos-once="true">
<div class="card-head">
<div class="number-box">
<span>2019</span>
</div>
<h2>UGAHacks 4</h2>
</div>
<div class="card-body">
<p>UGAHacks 4 returned to its original home at the Lamar Dodd School of Art which allowed it to have a greater presence within the University that year.
This event saw a total of 450 participants, 11 sponsors, 15 mentors, and over <a class="timeline-links" href="https://ugahacks4.devpost.com/" target="_BLANK">50 project submissions</a>. The fourth UGAHacks event
also experienced the greatest diversity of hackers from so many different schools across the entire world. UGAHacks 4 allowed for a new sprouting of ideas and possibilities for
all future events which were once thought of as unattainable.</p>
<a href="https://4.ugahacks.com/" target="_BLANK">
<img src="img/timeline-photos/hacks4banner.png" alt="UGAHacks 4 Banner">
</a>
</div>
</div>
<div class="event-card" data-aos="fade-right" data-aos-once="true">
<div class="card-head">
<div class="number-box">
<span>2018</span>
</div>
<h2>UGAHacks 3</h2>
</div>
<div class="card-body">
<p>UGAHacks 3 was hosted at Thinc Studios once again but this event did not fail to exceed expectations as its predecessors once did.
There was a change in leadership which came with a new organizational structure and new way of planning a hackathon. The third rendition of
our event created a recognizable brand which allowed hackers, sponsors, and partners to see a new vision that UGAHacks was about to embark upon, one that they had to be a part of.
We saw a total of 150 participants, 10 sponsors/partners, and over <a class="timeline-links" href="https://ugahacks3.devpost.com/" target="_BLANK">26 submissions for projects</a>. UGAHacks 3 was centered around the possibilities that could come from partnering with a team around a table in vein to how UGAHacks 3
and future events came to life - with a few students coming around a table and communicating new ideas.</p>
<a href="https://3.ugahacks.com/" target="_BLANK">
<img src="img/timeline-photos/hacks3banner.png" alt="UGAHacks 3 Banner">
</a>
</div>
</div>
<div class="event-card" data-aos="fade-left" data-aos-once="true">
<div class="card-head">
<div class="number-box">
<span>2016</span>
</div>
<h2>UGAHacks 2</h2>
</div>
<div class="card-body">
<p>UGAHacks 2 moved to a new home in Downtown Athens, Thinc. Studios, which helped created a more hacker friendly environment
with better work spaces, bean bag chairs, and modern presentation rooms for unique workshops. In total, <a class="timeline-links" href="https://ugahacks-ii.devpost.com/" target="_BLANK">24 projects were submitted</a>.
The second UGAHacks event saw great growth with more resources to add key features to the event such as food, a larger venue, and better prizes. This all
fueled the desire for more hackers to come and create a standard of awesomeness moving forward.</p>
<a href="https://2.ugahacks.com/" target="_BLANK">
<img src="img/timeline-photos/hacks2banner.png" alt="UGAHacks 2 Banner">
</a>
</div>
</div>
<div class="event-card" data-aos="fade-right" data-aos-once="true">
<div class="card-head">
<div class="number-box">
<span>2015</span>
</div>
<h2>UGAHacks 1</h2>
</div>
<div class="card-body">
<p>The original UGAHacks event began at the Lamar Dodd School of Art. The first event of its kind at UGA was special because two roommates wanted to bring an underrepresented
community of students within the Computer Science and Engineering schools together for a weekend of fun and unlimited creativity.
The first version of our event had humble beginnings with less than 100 participants and <a class="timeline-links" href="https://ugahacks.devpost.com/" target="_BLANK">36 submissions for projects</a>. UGAHacks became the new safe haven for hackers can come together to learn, create and share!</p>
<a href="https://1.ugahacks.com/" target="_BLANK">
<img src="img/timeline-photos/hacks1banner.png" alt="UGAHacks 1 Banner">
</a>
</div>
</div>
</div>
</div>
<br>
<br>
<div id="timeline-end">
<h2>2015 - The initial UGAHacks team formed with the plan of bringing the hacking spirit to Athens, Georgia</h2>
</div>
</section>
<section data-section="team" class='team'>
<div class="container">
<h1>Meet the team!<span></span></h1>
</div>
</section>
<div class="bootstrap-iso">
<div class="container">
<ul class="nav nav-tabs nav-center" role="tablist">
<li class="nav-item"><a data-toggle="tab" class="active nav-link" href="#team6" style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;">UGAHacks 6</a></li>
<li class="nav-item"><a data-toggle="tab" class="active nav-link"href="#team5" style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;">UGAHacks 5</a></li>
<li class="nav-item"><a data-toggle="tab" class="active nav-link"href="#team4" style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;">UGAHacks 4</a></li>
<li class="nav-item"><a data-toggle="tab" class="active nav-link"href="#team3" style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;">UGAHacks 3</a></li>
<li class="nav-item"><a data-toggle="tab" class="active nav-link"href="#team2" style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;">UGAHacks 2</a></li>
<li class="nav-item"><a data-toggle="tab" class="active nav-link"href="#team1" style="-webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px;">UGAHacks 1</a></li>
</ul>
</div>
<div class="tab-content">
<div id="team6" class="tab-pane fade in active">
<section data-section="team6" class='team'>
<!--<h1>Meet the team!<span></span></h1>-->
<h2>Mascot</h2>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/byte.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Byte</strong>
<div>Mascot</div>
<p>Boot up your dreams - Build the future</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.facebook.com/ugahacks" target="_BLANK"><div class='icon icon-facebook'></div></a>
<a href="https://www.instagram.com/ugahacks/" target="_BLANK"><div class='icon icon-instagram'></div></a>
<a href="https://github.com/ugahacks" target="_BLANK"><div class='icon icon-github'></div></a>
<a href="https://twitter.com/ugahacks" target="_BLANK"><div class='icon icon-twitter'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/byte.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/byte.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Byte</strong>
</div>
</div>
</div>
<h2>Directors</h2>
<div class='pure-g'>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/glen-george.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Glen George</strong>
<div>Lead Director</div>
<p>"Chase your dreams, pursue your passions, never be afraid to be uncomfortable."</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.instagram.com/glenge0rge/"target="_BLANK"><div class='icon icon-instagram'></div></a>
<a href="https://www.linkedin.com/in/glen-j-george/" target="_BLANK"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/glen-george.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/glen-george.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Glen George</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/yi-jian.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Yi Jian MaMa</strong>
<div>Finance Director</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/yi-jian-ma-ma-555199164/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/yi-jian.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/yi-jian.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Yi Jian MaMa</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/sydney-nelms.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Sydney Nelms</strong>
<div>Logistics Director</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/sydney-nelms-1a1874191/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/sydney-nelms.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/sydney-nelms.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Sydney Nelms</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/jenny-kim.png" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Jenny Kim</strong>
<div>Marketing Director</div>
<br>
<p>"Rainy day = Noodles"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/jenny-kim-b005121a4/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/jenny.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/jenny-kim.png" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Jenny Kim</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/jeffery-john.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Jeffery John</strong>
<div>Sponsorship Director</div>
<p>"Go Dawgs!"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.instagram.com/jefferyjohn_/"target="_BLANK"><div class='icon icon-instagram'></div></a>
<a href="https://github.com/jefferyjohn"target="_BLANK"><div class='icon icon-github'></div></a>
<a href="https://twitter.com/jefferyjohn_"target="_BLANK"><div class='icon icon-twitter'> </div></a>
<a href="https://www.linkedin.com/in/jefferyjohn/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
<a href="https://jefferyajohn.com/"target="_BLANK"><div class='icon icon-website'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/jeffery-john.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/jeffery-john.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Jeffery John</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/kane-du.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Kane Du</strong>
<div>Web Director</div>
<br>
<p>"Hello there"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.instagram.com/youkaneduit/"target="_BLANK"><div class='icon icon-instagram'></div></a>
<a href="https://github.com/kanedu828"target="_BLANK"><div class='icon icon-github'></div></a>
<a href="https://www.linkedin.com/in/kane-du-517277172/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/kane-du.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/kane-du.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Kane Du</strong>
</div>
</div>
</div>
</div>
<h2>Advisors</h2>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/danny-lee.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Danny Lee</strong>
<div>Advisor</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/dannylee25/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/danny-lee.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/danny-lee.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Danny Lee</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/jin-jeong.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Jin Jeong</strong>
<div>Advisor</div>
<p>"Proud of the hacks team!"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/jin-jeong/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/jin-jeong.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/jin-jeong.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Jin Jeong</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/jennifer-ly.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Jennifer Ly</strong>
<div>Advisor</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/ngoc-jennifer-ly/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/jennifer-ly.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/jennifer-ly.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Jennifer Ly</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/mohd-hasan.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Mohd (TJ) Hasan</strong>
<div>Advisor</div>
<p>"Those who are seen dancing are thought to be insane by those who cannot hear the music."</p>
</div>
<div class="pure-u-1-1">
<a href="https://github.com/tjhasan"target="_BLANK"><div class='icon icon-github'></div></a>
<a href="https://www.linkedin.com/in/mohdhasan10/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
<a href="https://tjhasan.github.io/"target="_BLANK"><div class='icon icon-website'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/mohd-hasan.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/mohd-hasan.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Mohd (TJ) Hasan</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/paul-hansa.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Paul Hansa</strong>
<div>Advisor</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/phansa/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/paul-hansa.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/paul-hansa.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Paul Hansa</strong>
</div>
</div>
</div>
<h2>Logistics Team</h2>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/kevin-tang.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Kevin Tang</strong>
<div>Logistics Team</div>
<br>
<p>"Hack on!"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/kevin-tang-101a62190/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/kevin-tang.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/kevin-tang.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Kevin Tang</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/kyle-aban.png" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Kyle Aban</strong>
<div>Logistics Team</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/kyle-aban/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/kyle-aban.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/kyle-aban.png" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Kyle Aban</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/miranda-gomez.png" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Miranda Gomez</strong>
<div>Logistics Team</div>
<p>"What matters in life is not what happens to you but what you remember and how"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/miranda-gomez-puche/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/miranda-gomez.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/miranda-gomez.png" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Miranda Gomez</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/stefan-tobler.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Stefan Tobler</strong>
<div>Logistics Team</div>
<p>"No mom I don't know what error code 27 means on the TV"</p>
</div>
<div class="pure-u-1-1">
<a href="https://github.com/stefantobler"target="_BLANK"><div class='icon icon-github'></div></a>
<a href="https://twitter.com/stefanltobler"target="_BLANK"><div class='icon icon-twitter'></div></a>
<a href="https://www.linkedin.com/in/stefantobler"target="_BLANK"><div class='icon icon-linkedin'></div></a>
<a href="https://stefantobler.com"target="_BLANK"><div class='icon icon-website'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/stefan-tobler.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/stefan-tobler.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Stefan Tobler</strong>
</div>
</div>
</div>
<h2>Marketing Team</h2>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/aidan-ostapko.png" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Aidan Ostapko</strong>
<div>Marketing Team</div>
<br>
<p>"I make things move"</p>
</div>
<div class="pure-u-1-1">
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/aidan-ostapko.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/aidan-ostapko.png" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Aidan Ostapko</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/annie-lian.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Annie Lian</strong>
<div>Marketing Advisor</div>
<br>
<br>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/annie-lian/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/annie-lian.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/annie-lian.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Annie Lian</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/felise-wen.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Felise Wen</strong>
<div>Marketing Advisor</div>
<br>
<p>"Opinions on Frozen Pop Tarts?"</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.instagram.com/feliseeeeenavidad/"target="_BLANK"><div class='icon icon-instagram'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/felise-wen.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/felise-wen.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Felise Wen</strong>
</div>
</div>
</div>
<h2>Sponsorship Team</h2>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/amanda-yang.jpg" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Amanda Yang</strong>
<div>Sponsorship Advisor</div>
<p>"Why did the java developer wear glasses? Because he couldn’t C#"</p>
</div>
<div class="pure-u-1-1">
<a href="https://instagram.com/amayangg"target="_BLANK"><div class='icon icon-instagram'></div></a>
<a href="https://www.linkedin.com/in/amanda-yang-2019/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>
<div class="team-picture">
<div class="team-picture-inner">
<div class="team-picture-front">
<img src="img/team-photos/bitmoji/amanda-yang.png" alt="Avatar">
</div>
<div class="team-picture-back">
<img src="img/team-photos/personal-pruned/amanda-yang.jpg" alt="Avatar">
</div>
</div>
</div>
<div class="summary">
<strong>Amanda Yang</strong>
</div>
</div>
</div>
<div class='pure-u-1 pure-u-sm-1-2 pure-u-md-1-3 pure-u-lg-1-4 pure-u-xl-1-6'>
<div data-scrollx data-based-on='bottom' data-remove-class-in='offscreen-up' class='offscreen-up member'>
<div class="card">
<div class="pure-g">
<div class="pure-u-1-1">
<img src="img/team-photos/personal-pruned/chunwing-ng.png" alt="Avatar">
</div>
<div class="pure-u-1-1 info">
<strong>Chunwing Ng</strong>
<div>Sponsorship Team</div>
<p>"The only time I'm not on caffeine is when I'm asleep "</p>
</div>
<div class="pure-u-1-1">
<a href="https://www.linkedin.com/in/chunwing-ng/"target="_BLANK"><div class='icon icon-linkedin'></div></a>
</div>
</div>
</div>