-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
878 lines (861 loc) · 37.2 KB
/
index.html
File metadata and controls
878 lines (861 loc) · 37.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta name="description" content="WesHack is Wesleyan's only hackathon! Join us April 23-25 for a weekend full of hacking, creating, prizes, and fun!
" />
<meta name="author" content="WesHack Team" />
<title>WesHack, Wesleyan's only Hackathon! April 23-25!</title>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> -->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<!-- Line awesome for the arrow icon. Will probably replace this with an actual image -->
<link rel="stylesheet"
href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/main.css" />
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&family=Ubuntu:wght@700&display=swap"
rel="stylesheet" />
<!-- FAVICON -->
<link href="assets/img/favicon.png" rel="icon" />
<link rel="canonical" href="https://www.weshack.org/" />
<!-- OPEN GRAPH / FACEBOOK -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.weshack.org/" />
<meta property="og:title" content="WesHack! April 23-25!" />
<meta property="og:description" content="Wesleyan's Only Hackathon, April 23-25!" />
<!-- <meta
property="og:image"
content="http://weshack.org/assets/img/cardinal-1200-background.png"
/> -->
<meta property="og:image"
content="https://raw.githubusercontent.com/dknopf/imageupload/main/twitter_card_logogit.png" />
<meta property="og:image:secure_url"
content="https://raw.githubusercontent.com/dknopf/imageupload/main/twitter_card_logo.png" />
<meta property="og:image:type" content="image/png" />
<!-- TWITTER -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@weshacks" />
<meta name="twitter:title" content="WesHack! April 23-25!" />
<meta name="twitter:creator" content="@weshacks" />
<meta name="twitter:description" content="A hackathon weekend full of fun and coding!" />
<meta name="twitter:image"
content="https://raw.githubusercontent.com/dknopf/imageupload/main/twitter_card_logo.png" />
</head>
<body>
<!-- IF YOU'RE SEEING THIS, YOU'RE A NERD -->
<!-- Website created by Daniel Knopf :) -->
<!-- Navigation -->
<nav id="nav" class="navbar navbar-expand-lg navbar-custom fixed-top">
<a class="navbar-brand ml-3" href="#">
<img src="assets/img/logo_filled.png" style="width: 60px" alt="WesHack logo" />
</a>
<button class="navbar-toggler mr-3 navbar-light" id="hamburger" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse ml-3 mr-3" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item px-2">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#schedule">Schedule</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#prizes">Prizes</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#team">Team</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#partners">Sponsors</a>
</li>
<li class="nav-item px-2">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<header id="hero">
<div class="row mx-3 align-items-center">
<div class="col-md-5 col-12 py-5">
<h5>April 23-25, 2021</h5>
<p class="textLogo">Wes<span class="gradientText">Hack</span></p>
<p>
WesHack is Wesleyan’s first hackathon in half a decade! Join us
April 23-25 for a weekend chock full of coding, workshops, free
stickers, and, most importantly, fun! NO EXPERIENCE REQUIRED,
hackers of all levels encouraged, especially beginners! Whether you
write algorithms in your sleep or you’re just excited to create your
first website, we can’t wait for you to come code with us!
<br />
<br />
If you want to help newer students by mentoring, register below too!
</p>
<a target="blank"
href="https://docs.google.com/forms/d/e/1FAIpQLSdiHkCkpkarGPEbO9kWPvCY2L5ruqAMELA77qGg_UI-RDQ2Ng/viewform?usp=sf_link">
<button class="btn-1">
Register<span class="icon la la-arrow-right pl-2"></span>
</button>
</a>
</div>
<div class="col-md-1"></div>
<div class="col-md-6 col-12 text-md-right py-3">
<div class="image-container">
<img class="img-fluid bg-blob" src="assets/img/blobs.png" />
<div class="col-2 countdown-blob p-0" id="countdown-blob-1">
<div class="blob-container">
<img class="countdown-blob-img" src="assets/img/Ellipse1.png" />
<h2 class="countdown-timer" id="hours">42</h2>
<p class="countdown-text" id="countdown-text-hours">HOURS</p>
</div>
</div>
<div class="col-2 countdown-blob p-0" id="countdown-blob-2">
<div class="blob-container">
<img class="countdown-blob-img" src="assets/img/Ellipse2.png" />
<h2 class="countdown-timer" id="minutes">42</h2>
<p class="countdown-text" id="countdown-text-days">MINUTES</p>
</div>
</div>
<div class="col-2 countdown-blob p-0" id="countdown-blob-3">
<div class="blob-container">
<img class="countdown-blob-img" src="assets/img/Ellipse3.png" />
<h2 class="countdown-timer" id="seconds">42</h2>
<p class="countdown-text" id="countdown-text-days">SECONDS</p>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- ABOUT/SCHEDULE -->
<section id="about-schedule">
<div class="row py-4 mx-3">
<!-- ABOUT -->
<div class="col-lg-8 col-12 py-4" id="about">
<div class="about-card">
<div class="row mx-3 pt-5">
<div class="col-12 text-center text-md-left">
<h2>About</h2>
</div>
</div>
<div class="row mx-3 pt-4">
<div class="col-md-7 col-12">
<p>
We are excited to bring a hackathon to Wesleyan this year!
While the Wesleyan CS department is great, we all know how few
opportunities there are to gain practical programming
experience. Luckily for you, there's WesHack! This hackathon
is a fun and low-stakes opportunity for you to gain valuable
practical coding experience, while also getting free swag,
something to put on your resume, and the chance at winning
hundreds of dollars in prizes! We are excited to bring the
Wesleyan CS community together in this fun event, and we look
forward to making some zany projects with you all!
</p>
</div>
<!-- <div class="col-4">
<div class="about-blob-container">
<img class="about-blob" src="assets/img/about-blobs.png" />
</div>
</div> -->
</div>
<!-- <div class="row"> -->
<!-- <div class="col-12"> -->
<div class="blob-container-container">
<div class="about-blob-container">
<img class="about-blob" src="assets/img/about-blobs.png" />
</div>
</div>
<!-- </div> -->
<!-- </div> -->
</div>
</div>
<!-- SCHEDULE -->
<div class="col-lg-4 col-12 py-3" id="schedule">
<div class="custom-card schedule-card">
<div class="schedule-header">
<div class="row pl-3 pt-5">
<div class="col-12">
<h2>Schedule</h2>
</div>
</div>
</div>
<!-- <div class="schedule-page page-1"> -->
<iframe class="schedule-gcal"
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FNew_York&src=Y191dmVjZjNhamtzYnFmYXZudmp0OWllMjQxa0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%23795548&showTitle=0&mode=AGENDA&showNav=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0&showDate=0&title=WesHack"
style="border: solid 1px #777" frameborder="0" scrolling="no"></iframe>
<!-- <div class="col-12">
<div class="row pl-3 pb-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot unfilled-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">Matt Adelman Talk</h4>
</div>
</div>
<div class="row pl-3 pb-4">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
Join LeoLabs software engineer Matt Adelman as he talks
about his experience in the field!
<strong
>Monday 4/19 @ 8pm, at
<a
href="https://wesleyan.zoom.us/j/98337764869?pwd=SFRGRk80T0RLM3Z6OXo4aE11RTNMZz09"
>this zoom link</a
></strong
>
</p>
</div>
</div>
</div> -->
<!-- </div> -->
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section id="faq">
<div class="row py-4 mx-3">
<div class="col-12">
<div class="custom-card py-4">
<div class="row mx-3 py-3">
<div class="col-md-1 col-12 text-md-left text-center">
<h2>FAQ</h2>
</div>
</div>
<div class="row justify-content-between mx-3 py-2">
<div class="col-md-5 col-12">
<div class="row pl-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot orange-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">
CAN I STILL PARTICIPATE IF I'M A BEGINNER?
</h4>
</div>
</div>
<div class="row pl-3 pb-4">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
Yes! We are planning several beginner-friendly workshops
and compiling a list of beginner-friendly resources to
make sure people of all skill levels are able to
participate!
<strong>If you think you don't have enough experience, WesHack
is a fun, low-stakes way to get that experience!
Everyone starts somewhere!</strong>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="row px-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot red-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">WHAT IS A HACKATHON?</h4>
</div>
</div>
<div class="row pl-3 pb-3">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
A hackathon is a weekend-long event where software
engineers, designers, and programmers come together to
create a program/application in a short period of time and
enter their creations to win various prizes! There will be
a recommended theme but you are free to make whatever you
want using whatever technologies you want!
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-between mx-3 py-2">
<div class="col-md-5 col-12">
<div class="row pl-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot purple-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">WHAT ABOUT COVID VACCINES?</h4>
</div>
</div>
<div class="row pl-3 pb-4">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
We encourage all participants to get their vaccine
<strong>Sunday the 25th</strong> so that any vaccine side
effects don't impact your WesHack experience. We want you
at peak hacking potential!
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="row px-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot orange-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">WHAT IS THE THEME?</h4>
</div>
</div>
<div class="row pl-3 pb-3">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
The theme for WesHack 2021 is "Building Wes Through Code!"
We want you to create something to help the Wesleyan
community! Think of all the things that bug you, and build
something to fix them! You could create the next
<a href="https://www.spotcheck.space">SpotCheck</a> or
<a href="http://ourcampus.us.com/">OurCampus</a>! You are
free to build something outside of the theme, and we’ll be
releasing a document of basic project ideas for those who
want a little guidance.
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-between mx-3 py-2">
<div class="col-md-5 col-12">
<div class="row pl-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot red-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">WILL THERE BE SWAG/PRIZES?</h4>
</div>
</div>
<div class="row pl-3 pb-4">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
There will be free laptop stickers for all participants
who submit something, and prizes for the top projects in
an assortment of categories!
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="row px-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot purple-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">
CAN I PARTICIPATE EVEN IF I AM REMOTE?
</h4>
<!-- <h4 class="faq-question">CAN I BE A MENTOR?</h4> -->
</div>
</div>
<div class="row pl-3 pb-3">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
<!-- If you’re interested in becoming a mentor and providing
assistance to participants during the hackathon also sign
up at the pre-registration form! Mentoring will likely
take the form of having a set time period you will be
available to answer questions that teams have. -->
Yes! All members of the Wesleyan community are welcome!
However, if you are remote we won’t be shipping any swag,
but you’re welcome to come pick it up next semester!
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-between mx-3 py-2">
<div class="col-md-5 col-12">
<div class="row pl-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot orange-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">CAN I BE A MENTOR?</h4>
</div>
</div>
<div class="row pl-3 pb-4">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
If you’re interested in becoming a mentor and providing
assistance to participants during the hackathon also sign
up at the pre-registration form! Mentoring will likely
take the form of having a set time period you will be
available to answer questions that teams have.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="row px-3 py-2">
<div class="col-1 d-md-block d-none text-center px-0">
<div class="rounded-circle faq-dot red-dot"></div>
</div>
<div class="col-md-11 col-12 text-left">
<h4 class="faq-question">ARE TEAMS ALLOWED?</h4>
</div>
</div>
<div class="row pl-3 pb-3">
<div class="col-md-11 col-12 offset-md-1 text-left">
<p>
You are welcome to work solo or with a team of your
choice! Teams of up to 4 are allowed, and if you want to
make some new friends we will have a team-formation
discord channel for you to find coding pals! You can
indicate your teammates in a later email we will send out!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- PRIZES -->
<section id="prizes">
<div class="row py-4 mx-3">
<div class="col-12">
<div class="custom-card prizes-card">
<div class="row mx-3 py-4">
<div class="col-md-1 col-12 text-md-left text-center">
<h2>Prizes</h2>
</div>
</div>
<div class="row mx-3 justify-content-center">
<div class="col-md-4 col-sm-6 col-xs-12 pb-5 px-md-5">
<div class="individual-prize-card">
<div class="row mx-3 py-3">
<div class="col-md-1 col-12 text-md-left text-center">
<h2>1st</h2>
</div>
</div>
<div class="row mx-3 text-center justify-content-center">
<div class="col-12">
<img class="img-fluid" src="assets/img/prizes/monitor.jpg" />
</div>
</div>
<div class="row mx-3 py-3">
<div class="col-12">
<p>
That's right, a full 24" monitor for each member of the
winning team! Your eyes will thank you.
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 pb-5 px-md-5">
<div class="individual-prize-card">
<div class="row mx-3 py-3">
<div class="col-md-1 col-12 text-md-left text-center">
<h2>2nd</h2>
</div>
</div>
<div class="row mx-3 text-center justify-content-center">
<div class="col-12">
<img class="img-fluid" src="assets/img/prizes/amazon.png" />
</div>
</div>
<div class="row mx-3 py-3">
<div class="col-12">
<p>
$50 (or more) gift card for each member of the 2nd place
team! Treat yourself to a mini shopping spree!
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 pb-5 px-md-5">
<div class="individual-prize-card">
<div class="row mx-3 py-3">
<div class="col-12 text-md-left text-center">
<h2>3rd</h2>
</div>
</div>
<div class="row mx-3 text-center justify-content-center">
<div class="col-12">
<img class="img-fluid" src="assets/img/prizes/mouse.png" />
</div>
</div>
<div class="row mx-3 py-3">
<div class="col-12">
<p>
The 3rd place team wins a high quality Logitech
Bluetooth mouse! Ergonomic AND silent, what a steal!
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 pb-5 px-md-5">
<div class="individual-prize-card">
<div class="row mx-3 py-3">
<div class="col-12 text-md-left text-center">
<h2>1st New Team</h2>
</div>
</div>
<div class="row mx-3 text-center justify-content-center">
<div class="col-12">
<img class="img-fluid" src="assets/img/prizes/pico.png" />
</div>
</div>
<div class="row mx-3 py-3">
<div class="col-12">
<p>
The best team comprised of first-time hackathon goers
will win Raspberry Pi Pico engineering kits!
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 pb-5 px-md-5">
<div class="individual-prize-card">
<div class="row mx-3 py-3">
<div class="col-12 text-md-left text-center">
<h2>Best in Theme</h2>
</div>
</div>
<div class="row mx-3 text-center justify-content-center">
<div class="col-12">
<img class="img-fluid" src="assets/img/prizes/wes_sweatshirt.png" />
</div>
</div>
<div class="row mx-3 py-3">
<div class="col-12">
<p>
The team with a hack that best fits the theme of
Building Wes Through Code will each win a Wes
sweatshirt!
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 pb-5 px-md-5">
<div class="individual-prize-card">
<div class="row mx-3 py-3">
<div class="col-12 text-md-left text-center">
<h2>Patricelli Prize</h2>
</div>
</div>
<div class="row mx-3 text-center justify-content-center">
<div class="col-12">
<img class="img-fluid" src="assets/img/prizes/beats_flex.png" />
</div>
</div>
<div class="row mx-3 py-3">
<div class="col-12">
<p>
The team with the best
<strong>social or environmental impact</strong> project
will each win a set of Beats Flex headphones!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END PRIZES -->
<!-- TEAM -->
<section id="team">
<div class="row py-4 mx-5">
<div class="col-12">
<h2>Our Team</h2>
</div>
</div>
<div class="row justify-content-center mx-3">
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/kiryl.jpeg" />
<div class="shape-container pb-5">
<img class="team-img-shape short-shape" src="assets/img/orange_shape_left.png" />
<p class="team-text name">KIRYL BELIAUSKI</p>
<p class="team-text bio">
I'm a sophomore majoring in CS and Math, and I believe that
WesHack will give students an opportunity to make connections
with people they would not meet otherwise. I’ve recently been
playing a lot of spike ball and Doom Eternal.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/rome.jpg" />
<div class="shape-container pb-5">
<img class="team-img-shape short-shape" src="assets/img/red_shape.png" />
<p class="team-text name">ROME DUONG</p>
<p class="team-text bio">
My interest in coding began when I first completed “Programming
with Karel the Dog” on CodeHS. Outside the world of coding, I am
very passionate about cycling and playing NFS Most Wanted
(2005).
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/danielG.jpg" />
<div class="shape-container pb-5">
<img class="team-img-shape short-shape" src="assets/img/purple_shape.png" />
<p class="team-text name">DANIEL GOLDELMAN</p>
<p class="team-text bio">
I’m a sophomore majoring in CS, and when I’m not working on
projects I’m probably playing ${insert instrument here}. I’m
super excited to bring WesHack to the growing coding community
on campus.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/danielK.jpg" />
<div class="shape-container">
<img class="team-img-shape" src="assets/img/orange_shape_right.png" />
<p class="team-text name">DANIEL KNOPF</p>
<p class="team-text bio">
I’m a junior double majoring in CS and English, and I’m wildly
excited to add another CS sticker to my sticker collection. Oh
and to host WesHack, I guess...
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/ismail.jpeg" />
<div class="shape-container">
<img class="team-img-shape" src="assets/img/orange_shape_left.png" />
<p class="team-text name">ISMAIL LEGHARI</p>
<p class="team-text bio">
I’m a sophomore majoring in CS, an aspiring software engineer,
entrepreneur and a big advocate of Hackathons! Outside of my CS
interests, I’m a massive Petrolhead!
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/ashley.jpg" />
<div class="shape-container pb-5">
<img class="team-img-shape" src="assets/img/red_shape.png" />
<p class="team-text name">ASHLEY TUEN</p>
<p class="team-text bio">
I’m a sophomore pursuing a major in Economics and Government.
I’m illiterate when it comes to the coding language, but I am
here to draw cute birds, so that doesn’t matter does it?
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/cisco.JPG" />
<div class="shape-container pb-5">
<img class="team-img-shape" src="assets/img/orange_shape_right.png" />
<p class="team-text name">CISCO VIELMA</p>
<p class="team-text bio">
I’m a junior majoring in CS and had no coding experience prior
to Wesleyan. Outside of CS I’m a member of Wesleyan’s Sailing
Team and enjoy photography in my down time.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="team-card">
<img class="team-img" src="assets/img/team/RicardoZamora.JPG" />
<div class="shape-container pb-5">
<img class="team-img-shape short-shape" src="assets/img/purple_shape.png" />
<p class="team-text name">RICARDO ZAMORA</p>
<p class="team-text bio">
I’m a sophomore majoring in CS and Math, and I enjoy connecting
with students who share my passions. I joined Code_Wes and
WesHack to strengthen the cs community at Wes. Aside from
academics, I love anime and hopping on Warzone!
</p>
</div>
</div>
</div>
</div>
</section>
<!-- SPONSORS -->
<!-- <div id="sponsors"></div> -->
<section id="partners">
<div class="row py-4 mx-3">
<div class="col-12 partner-card">
<div class="row mx-1">
<div class="col-12">
<h2>Sponsors</h2>
</div>
</div>
<div class="row mx-1">
<div class="col-12">
<p>
WesHack is incredible grateful to all of our sponsors for
helping to make this event a reality! If you're interested in
sponsoring WesHack contact us at
<a class="text-link" href="mailto:team@weshack.org">team@weshack.org</a>
</p>
</div>
</div>
<!-- <div class="row py-2 mx-1">
<div class="col-12">
<h3>Platnium ($1000+)</h3>
</div>
</div> -->
<div class="row py-2 mx-1">
<div class="col-12">
<h3>Gold</h3>
</div>
</div>
<div
class="row py-2 mx-1 text-md-left text-center justify-content-md-start justify-content-center align-items-center">
<div class="col pb-3">
<a href="https://www.leolabs.space/">
<img class="img-fluid partner-logo" src="assets/img/leolabs-logo-transparent.png" />
</a>
</div>
<div class="col pb-3">
<a href="https://www.wesleyan.edu/patricelli/">
<img class="img-fluid partner-logo" src="assets/img/patricelli_center.png" />
</a>
</div>
<div class="col pb-3">
<a href="https://www.wesleyan.edu/careercenter/students/students-welcome.html">
<img class="img-fluid partner-logo" src="assets/img/GCC.png" />
</a>
</div>
<div class="col pb-3">
<a href="https://www.wesleyan.edu/mathcs/cs/index.html">
<img class="img-fluid partner-logo" src="assets/img/cs_dept.png" />
</a>
</div>
</div>
<div class="silver">
<div class="row py-2 mx-1">
<div class="col-12">
<h3>Silver</h3>
</div>
</div>
<div
class="row py-2 mx-1 text-md-left text-center justify-content-md-start justify-content-center align-items-center">
<div class="col-md-3 col pb-5">
<a href="https://www.mondomiddletown.com/">
<img class="img-fluid partner-logo" src="assets/img/mondo.jpeg" />
</a>
</div>
<div class="col-md-3 col pb-5">
<a href="https://www.hachict.com/">
<img class="img-fluid partner-logo" src="assets/img/hachi.png" />
</a>
</div>
<div class="col-md-3 col pb-5">
<a href="https://www.labocamexican.com/">
<img class="img-fluid partner-logo" src="assets/img/la_boca.jpg" />
</a>
</div>
<div class="col-md-3 col pb-5">
<a href="https://escact.com/menus/">
<img class="img-fluid partner-logo" src="assets/img/esca.png" />
</a>
</div>
<div class="col-md-3 col pb-5">
<a href="https://pokemoto.com/">
<img class="img-fluid partner-logo" src="assets/img/pokemoto.png" />
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="row py-4 mx-3">
<div class="col-12">
<div class="custom-card contact-card py-4" id="contact us">
<div class="container">
<div class="row justify-content-center text-center pt-5">
<div class="col-6">
<h2>Contact us</h2>
</div>
</div>
<div class="row justify-content-center text-center py-1 o">
<div class="col-6">
<p class="contact-text">Still have questions?</p>
</div>
</div>
<div class="row justify-content-center text-center pt-1 pb-5">
<div class="col-10">
<div class="row justify-content-center">
<div class="col col-md-1 px-2">
<a href="https://www.instagram.com/wes.hack/">
<img class="social-icon" src="assets/img/instagram.svg" alt="instagram icon" />
</a>
</div>
<div class="col col-md-1 px-2">
<a href="mailto:support@weshack.org">
<img class="social-icon" src="assets/img/mail.svg" alt="email icon" />
</a>
</div>
<div class="col col-md-1 px-2">
<a href="https://discord.gg/gjAY7U5Yqk">
<img class="social-icon" src="assets/img/discord.svg" alt="discord icon" />
</a>
</div>
<div class="col col-md-1 px-2">
<a href="https://twitter.com/weshacks?s=20">
<img class="social-icon" src="assets/img/twitter.svg" alt="twitter icon" />
</a>
</div>
<div class="col col-md-1 px-2">
<a href="https://www.facebook.com/WesHack-106163591552766">
<img class="social-icon" src="assets/img/facebook.svg" alt="facebook icon" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="assets/js/main.js"></script>
<!-- BOOTSTRAP -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="assets/js/main.js"></script>
</body>
</html>