-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
712 lines (641 loc) · 42.3 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
<!DOCTYPE html>
<html lang="en">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-150897843-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-150897843-1');
function playCamera() {
document.getElementById("camera-click").play()
}
// var ratHere = "yes"
// function pizzarat() {
// document.getElementById('rat').classList.add('rat-anim')
// ratHere = "no"
// }
// if (ratHere == "no") {
// document.getElementById('rat').classList.remove('rat-anim')
// ratHere="yes"
// }
// const pizzarat =
function clickPizza() {
document.getElementById("rat").classList.remove("rat-anim");
void document.getElementById("rat").offsetWidth
document.getElementById("rat").classList.add("rat-anim")
}
var pedState = "stop"
function togglePed() {
var pedByte = document.querySelector(".pedestrian")
if (pedState == "stop") {
pedByte.src = "assets/img/eastereggs/PedestrianA.png"
pedState = "go"
} else {
pedByte.src = "assets/img/eastereggs/PedestrianB.png"
pedState = "stop"
}
}
setInterval(togglePed, 5000)
</script>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description"
content="TechTogether New York is committed to empowering underrepresented people in STEM, creating equal opportunity through an engaging and inspiring environment." />
<meta name="keywords" content="STEM, hackathon, TechTogether" />
<title>TechTogether New York 2021</title>
<!-- Favicon-->
<link rel="icon" type="image/png" href="assets/favicon.png" />
<!-- Bootstrap Icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic"
rel="stylesheet" type="text/css" />
<!-- SimpleLightbox plugin CSS-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/SimpleLightbox/2.1.0/simpleLightbox.min.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Barlow">
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light fixed-top py-3" id="mainNav">
<div class="container px-4 px-lg-5">
<!-- need to replace with a photo + implement jump to content feature-->
<a class="navbar-brand" href="#page-top"><img src="assets/img/ttnylogo.png" alt="ttny logo"
height="60px"></a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto my-2 my-lg-0">
<li class="nav-item"><a class="nav-link" href="#challenges">Challenges</a></li>
<li class="nav-item"><a class="nav-link" href="#get-involved">Get Involved</a></li>
<li class="nav-item"><a class="nav-link" href="#schedule">Schedule</a></li>
<li class="nav-item"><a class="nav-link" href="#sponsors">Sponsors</a></li>
<li class="nav-item"><a class="nav-link" href="#faq">FAQ</a></li>
<li class="nav-item"><a class="nav-link" href="#volunteers">Volunteers</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead">
<div class="container px-4 px-lg-5 h-100">
<div class="row gx-4 gx-lg-5 h-100 align-items-center justify-content-center text-center">
<div class="col-lg-8 align-self-end">
<!-- <h1 class="text-white font-weight-bold">TechTogether New York</h1> -->
<h1 class="text-navy-title">TechTogether New York</h1>
<!-- <hr class="divider" /> -->
</div>
<div class="col-lg-8 align-self-baseline">
<p class="text-navy-title">Virtual Event | October 15th-17th, 2021</p>
<p class="text-navy-paragraph mb-4">Explore New York City without leaving your home for
TechTogether's second hackathon of the year.</p>
<a class="btn btn-primary btn-xl" target="_blank"
href="https://www.eventbrite.com/e/techtogether-new-york-2021-tickets-164054801327?ltclid=a2e9dfde-e728-4ae4-8c9a-a8dce8a38c57
https://www.eventbrite.com/e/techtogether-new-york-2021-tickets-164054801327?ltclid=a2e9dfde-e728-4ae4-8c9a-a8dce8a38c57">Register Now (it's
free)</a>
<div class="row gx-1 button-group">
<div class="d-flex flex-row flex-wrap align-items-center justify-content-center">
<a class="btn btn-primary border-0 rounded-pill p-3 shadow m-3" target="_blank"
href="https://techtogether-new-york-2021.devpost.com/?ref_feature=challenge&ref_medium=your-open-hackathons&ref_content=Upcoming">
View Challenges
</a>
<a class="btn btn-primary border-0 rounded-pill p-3 shadow m-3" target="_blank"
href="https://techtogether-new-york-2021.devpost.com/?ref_feature=challenge&ref_medium=your-open-hackathons&ref_content=Upcoming">
Submit Project
</a>
<a class="btn btn-primary border-0 rounded-pill p-3 shadow m-3" target="_blank"
href="https://drive.google.com/drive/folders/1xRF5AtSpb28VFk1CrUfjdLVwFU0_PGMc">
Workshop Recordings
</a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- About-->
<section class="page-section" id="about">
<div class="container px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-lg-8 text-left">
<h2 class="text-navy-title mt-0">This is how New Yorkers do hackathons.</h2>
<hr class="divider divider-light" />
<p class="text-navy-paragraph mb-4">We are excited to welcome you to TechTogether New York 2021,
which will take place virtually this year from October 15th - 17th. At TechTogether New York,
our mission is to empower all <a href="https://www.womenforpoliticalchange.org/appendix"
target="_blank">people of marginalized genders</a> by providing opportunities to gain
valuable skills and explore tech in an inclusive, inspiring, and engaging environment.</p>
<p class="text-navy-paragraph mb-4"> This year’s theme <strong> Uniquely NYC Things 🏙 </strong>
will primarily focus on what makes New York the greatest city in the world. Come on by and enjoy
some interesting workshops, create a hack (optional), network with our sponsors, and meet some
amazing people. </p>
<!-- <a class="btn btn-light btn-xl" href="#services">Get Started!</a> -->
</div>
</div>
</div>
<div class="pizza-rat">
<img src="assets/img/eastereggs/Pizza.png" alt="pizza" id="pizza" class="pizza" onclick="clickPizza()" title="What's underneath the pizza?"/>
<img src="assets/img/eastereggs/Rat.png" alt="rat" id="rat" class="rat"/>
</div>
</section>
<!-- Mission-->
<section class="page-section" id="mission">
<div class="container px-4 px-lg-5">
<h2 class="text-navy-title text-center mt-0">Our Mission</h2>
<!-- <hr class="divider" /> -->
<div class="row gx-4 gx-lg-5">
<div class="col-lg-12 col-md-6">
<div class="mt-5">
<div class="mb-2"></div>
<p class="text-navy-paragraph mb-0 align-items-center">We are committed to providing people of
marginalized genders with opportunities to explore the tech industry in an inspiring,
encouraging, and energizing environment.</p>
<br>
<p class="text-navy-paragraph mb-0 align-items-center"> At TechTogether New York, we give each
hackers regardless of age or experience level the unique opportunity to <strong>(1)</strong>
gain and develop their skill-sets, <strong>(2)</strong> build a professional network,
<strong>(3)</strong> and be part of a supportive and empowering community.
</p>
</div>
</div>
<!-- <div class="col-lg-3 col-md-6 text-center">
<div class="mt-5">
<div class="mb-2"><i class="bi-heart fs-1 text-primary"></i></div>
<h3 class="h4 mb-2">Made with Love</h3>
<p class="text-muted mb-0">Is it really open source if it's not made with love?</p>
</div> -->
<!-- </div> -->
</div>
</div>
<img src="assets/img/eastereggs/PedestrianA.png" alt="Byte Pedestrian" class="pedestrian" />
</section>
<!-- Challenges-->
<section class="challenges-section overflow-hidden py-5" id="challenges">
<div class="mx-0 px-0">
<h2 class="text-white-title text-center mt-0 text-light fs-1">Which challenge will you enter?</h2>
<div class="row gx-4 gx-lg-5">
<div class="col-md-3 d-none d-md-block text-center p-0">
<img src="./assets/img/challenges/lboxes.png" alt="left floating boxes" class="img-fluid">
</div>
<div class="col-md-6 text-center">
<div class="row h-100 d-flex align-items-center justify-content-center">
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div
class="col-md-12 h-100 w-75 m-auto px-4 d-flex flex-column justify-content-center align-items-center challenge-slide">
<img src="./assets/img/socioeconomicbyte.png" alt="Best Socioeconomic Hack"
class="carousel-byte">
<h3>📢 Best Socioeconomic Hack</h3>
<p class="carousel-text">Innovate a solution to New York City’s most pressing
issues in the social and economic realm,
from helping its residents find affordable and spacious housing, to creating
jobs and
minimizing unemployment for its population, to reducing poverty and
homelessness for the
less fortunate, to improving education access and quality for all youth, and
more.</p>
</div>
</div>
<div class="carousel-item">
<div
class="col-md-12 h-100 w-75 m-auto px-4 d-flex flex-column justify-content-center align-items-center challenge-slide">
<img src="./assets/img/creativebyte2.png" alt="Best Creative Arts & Media Hack"
class="carousel-byte">
<h3>🎨 Best Creative Arts & Media Hack</h3>
<p class="carousel-text">New York City is a melting pot of creative inspirations
and diverse
perspectives, overflowing with various art, music, and media styles
(Broadway, street art,
jazz, subway performers, The New York Times & Wall Street Journal and
more!). Create a hack
that flexes your creativity to support, expand, and show love for the arts
and media industry in NYC!</p>
</div>
</div>
<div class="carousel-item">
<div
class="col-md-12 h-100 w-75 m-auto px-4 d-flex flex-column justify-content-center align-items-center challenge-slide">
<img src="./assets/img/accessibilitybyte.png"
alt="Best Productivity & Accessibility Hack" class="carousel-byte">
<h3>⏩ Best Productivity & Accessibility Hack</h3>
<p class="carousel-text">New York City is known for its fast-paced culture and
high performing workforce,
but also its convenience and access to opportunity. Develop a hack that will
speed up the productivity
of its population, make everyday resources more accessible to communities,
and expand opportunity for
all individuals.</p>
</div>
</div>
<div class="carousel-item">
<div
class="col-md-12 h-100 w-75 m-auto px-4 d-flex flex-column justify-content-center align-items-center challenge-slide">
<img src="./assets/img/wellnessbyte.png" alt="Best Wellness Hack"
class="carousel-byte">
<h3>💆♀️ Best Wellness Hack</h3>
<p class="carousel-text">The pandemic was a unified struggle for New York City
as it disrupted lives of everyone
in this energy-bound city: from darkening Broadway to quieting subway
platforms to creating job and housing
troubles. As the city emerges from this difficult period, its people are,
more than ever, in need of tools to
navigate this chaotic and energetic pace of recovery. Innovate a hack to
support the mental health and wellness
of the NYC population.</p>
</div>
</div>
<div class="carousel-item">
<div
class="col-md-12 h-100 w-75 m-auto px-4 d-flex flex-column justify-content-center align-items-center challenge-slide">
<img src="./assets/img/infrastructurebyte.png" alt="Best Infrastructure Hack"
class="carousel-byte">
<h3>🏢 Best Infrastructure Hack</h3>
<p class="carousel-text infrastructure">As the daily routine and glamorous
tourism of New York City are reinvigorating, its public
transportation systems are back in operation and its famous architecture and
attractions are being visited and
admired again. Yet, the influx of citygoers and tourists can lead to
environmental problems including air
pollution from vehicles, increased energy usage, and more littering of the
streets and waterways. Create a hack
to improve NYC’s infrastructure: from boosting efficiency and accessibility
of public transportation to improving
design and maintenance of architecture to solving its most urgent
environmental troubles.</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button"
data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button"
data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- <p class="fs-4 text-light">Coming Soon!</p> -->
</div>
</div>
<div class="col-md-3 d-none d-md-block text-center p-0">
<img src="./assets/img/challenges/rboxes.png" alt="right floating boxes" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- Get Involved -->
<section class="involved-section overflow-hidden py-5" id="get-involved">
<div class="container px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-lg-8 text-left">
<h2 class="text-navy-title text-center mt-0 text-light fs-1">Get Involved</h2>
<div class="row gx-1 button-group">
<div class="d-flex flex-row flex-wrap align-items-center justify-content-center">
<a target="_blank"
href="https://www.eventbrite.com/e/techtogether-new-york-2021-tickets-164054801327?ltclid=a2e9dfde-e728-4ae4-8c9a-a8dce8a38c57
https://www.eventbrite.com/e/techtogether-new-york-2021-tickets-164054801327?ltclid=a2e9dfde-e728-4ae4-8c9a-a8dce8a38c57"
class="involved-btn a btn btn-primary border-0 rounded-pill p-3 shadow m-3">Register to
Attend</a>
<!-- <a href="https://techtogether.typeform.com/to/PIcLVdad"
class="btn btn-primary border-0 rounded-pill p-3 shadow m-3 involved-btn b">Host
a
Workshop</a> -->
</div>
<div class="d-flex flex-row flex-wrap align-items-center justify-content-center">
<a target="_blank" href="https://techtogether.typeform.com/to/hpT8Nfnu"
class="involved-btn d btn btn-primary border-0 rounded-pill p-3 shadow m-3">Sign
up to
Mentor</a>
<a target="_blank" href="https://techtogether.typeform.com/to/UouAuPIf"
class="involved-btn e btn btn-primary border-0 rounded-pill p-3 shadow m-3">Sign
up to
Judge</a>
</div>
</div>
</div>
</div>
</div>
<a href="https://artsandculture.google.com/partner/moma-the-museum-of-modern-art" target="_blank"><img src="assets/img/eastereggs/Painting.png" alt="Byte Painting" class="painting-egg" title="MOMA Virtual Tour" /></a>
</section>
<!-- Schedule -->
<section class="page-section" id="schedule" style="background: #F4EFE5; padding: 8rem 0;">
<div class='rect1'></div>
<div class='rect2'></div>
<h2 class="text-center mt-0 fs-1">Schedule</h2>
<div class="container-fluid p-0 text-center">
<div id="scheduleBoard">
<div class="sched-nav">
<button class="btn sched-btn" style="border-radius: 4px 0px 0px 4px;" id="1">FRIDAY</button>
<button class="btn sched-btn" style="border-radius: 0px;" id="2">SATURDAY</button>
<button class="btn sched-btn" style="border-radius: 0px 4px 4px 0px;" id="3">SUNDAY</button>
<a href="" target="_blank" id="add-to-calendar-icon-container">
<img src="assets/img/calendar.svg" alt="Add to Calendar" title="Add to Calendar" style="width: 5%; float: right;"/></a>
</div>
<div id="day" style="margin: 10px;">
Refresh the page for the most updated schedule.
<br>Please note that all times are in Eastern Time (GMT-4).
<br>Click on an day to see the day's schedule.
</div>
</div>
</div>
<img src="assets/img/schedule1.png" class="img platform img-fluid">
</section>
<!-- Sponsors -->
<section class="page-section sponsorsbg text-black" id="sponsors">
<div class="container px-4 px-lg-5 text-center">
<h2 class="text-navy-title text-center mt-0 text-light fs-1">Our Sponsors</h2>
<!-- <p class="tag-line mb-5"><i>Click on the logo to learn more about the company.</i></p> -->
<div class="button-group">
<img alt="Balsamiq" src="assets/img/logos/balsamiq-logo.png" class="img-fluid logo-big" id="balsamiq" />
<div id="balsamiq-descript" class="modal">
<div class="modal-content">
<div class="close closeBalsamiq">×</div>
<div class="modal-body">
<a href="https://bit.ly/tt-balsamiq">
<h4>Balsamiq</h4>
</a>
UX is an exciting, fast-growing, high-paying, impactful discipline. But where do you start?
Start with Balsamiq! Balsamiq Wireframes is the perfect first UX design tool for anyone
interested in getting into UX. It's by far the most approachable: you just drag, drop, and
arrange controls on the page, and voila', you made your first User Interface! They even have
online courses and articles to teach you all about UI design and wireframing. Balsamiq is
free
for classroom use, and very affordable for anyone else. Kick-start your UX career at
balsamiq.com
</div>
</div>
</div>
<img alt="Capital One" src="assets/img/logos/C1-logo.png" class="img-fluid logo-big" id="CapitalOne" />
<div id="CapitalOne-descript" class="modal">
<div class="modal-content">
<div class="close closeCapitalOne">×</div>
<div class="modal-body">
<a href="https://bit.ly/tt-capital-one">
<h4>Capital One</h4>
</a>
At Capital One, we’re advancing our culture of belonging—where everyone feels seen, heard,
valued and free to be their authentic selves.
</div>
</div>
</div>
<img alt="Microsoft" src="assets/img/logos/Microsoft-logo_rgb_c-gray 1.png" class="img-fluid logo-big"
id="Microsoft" />
<div id="Microsoft-descript" class="modal">
<div class="modal-content">
<div class="close closeMicrosoft">×</div>
<div class="modal-body">
<a href="https://bit.ly/tt-microsoft-careers">
<h4>Microsoft</h4>
</a>
Microsoft enables digital transformation for the era of an intelligent cloud and an
intelligent
edge. Its mission is to empower every person and every organization on the planet to achieve
more.
</div>
</div>
</div>
<img alt="Boston University" src="assets/img/logos/bu-logo.png" class="img-fluid logo-big" id="BU" />
<div id="BU-descript" class="modal">
<div class="modal-content">
<div class="close closeBU">×</div>
<div class="modal-body">
<a href="https://bit.ly/tt-bu-admissions">
<h4>Boston University</h4>
</a>
Boston University is a leading private research institution with two primary campuses in the
heart of Boston and programs around the world.
</div>
</div>
</div>
<img alt="Spark" src="assets/img/logos/spark-logo.png" class="img-fluid logo-med" id="Spark" />
<div id="Spark-descript" class="modal">
<div class="modal-content">
<div class="close closeSpark">×</div>
<div class="modal-body">
<a href="https://bit.ly/tt-spark">
<h4>Spark</h4>
</a>
Housed in the Faculty of Computing & Data Sciences, Spark! is the technology incubator and
experiential learning lab for student led computational and data driven projects at Boston
University.
</div>
</div>
</div>
<img alt="Travelers" src="assets/img/logos/Travelers-logo_171x59.jpg" class="img-fluid logo-big" id="Travelers" />
<div id="Travelers-descript" class="modal">
<div class="modal-content">
<div class="close closeTravelers">×</div>
<div class="modal-body">
<a href="https://www.instagram.com/travelerscareers/?hl=en">
<h4>Travelers</h4>
</a>
Innovative thinking, creative problem-solving, and a determination to challenge the status-quo, these are some of the defining qualities for participants of our Technology Leadership Development Program (TLDP). This two to three-year experiential program is designed to grow and develop your technology and self-leadership skills. Each experience will consist of a combination of hands-on opportunities, access to a robust multi-tiered curriculum, and a mentoring program to prepare you for a dynamic career. You will have the opportunity to explore multiple technologies while learning from different leaders within Travelers.
</div>
</div>
</div>
<img alt="Hackathon Mentors" src="assets/img/logos/HackathonMentors_RGB.png" class="img-fluid logo-big" id="HackathonMentors" />
<img alt="Robinhood" src="assets/img/logos/Robinhood-logo-color.png" class="img-fluid logo-big" id="Robinhood" />
<div id="Robinhood-descript" class="modal">
<div class="modal-content">
<div class="close closeRobinhood">×</div>
<div class="modal-body">
<a href="https://bit.ly/tt-robinhood">
<h4>Robinhood</h4>
</a>
</div>
</div>
</div>
</div>
<br>
</div>
<img src="assets/img/eastereggs/Tourist.png" alt="Tourist Byte" class="tourist-byte" title="Say Cheese!" onclick="playCamera()"/>
<audio id="camera-click" src="assets/img/eastereggs/cameraClick.wav"></audio>
</section>
<!-- FAQ -->
<section class="page-section" id="faq">
<div class="container px-4 px-lg-5 text-center">
<h2 class="text-navy-title text-center mt-0 text-light fs-1" style="padding-top: 2em;">No Dumb Questions
</h2>
<div class="row py-5">
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question1" aria-expanded="false" aria-controls="question1">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>Where do I submit my solution/project?</div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question1">
<div class="card card-body text-start faq-text">
<p class="m-2">
Your project will be submitted through Devpost. Click on the
"Submit Project" button at the top of the site to access the Devpost.
<br><br>
Your submission must include a video
(no longer than 2 minutes) that showcases your project, a basic description of your
project, and the challenge(s)
for which you want your project to be considered.
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question2" aria-expanded="false" aria-controls="question2">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>Where do I go to attend a session? </div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question2">
<div class="card card-body text-start faq-text">
<p class="m-2">All workshops, activities and events will be taking place via Zoom. Meetings
links will be shared via Discord.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question3" aria-expanded="false" aria-controls="question3">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>How to I find a mentor for help?</div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question3">
<div class="card card-body text-start faq-text">
<p class="m-2">Mentoring will all be done through Discord. To request a mentor, fill out the
form on the Discord channel and then hop onto our Mentorship zoom hangout to connect
with your assigned mentor.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question4" aria-expanded="false" aria-controls="question4">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>I did not get an invite to join Discord. How do I get the invite? </div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question4">
<div class="card card-body text-start faq-text">
<p class="m-2">Register on <a
href="https://www.eventbrite.com/e/techtogether-new-york-2021-tickets-164054801327?ltclid=a2e9dfde-e728-4ae4-8c9a-a8dce8a38c57
https://www.eventbrite.com/e/techtogether-new-york-2021-tickets-164054801327?ltclid=a2e9dfde-e728-4ae4-8c9a-a8dce8a38c57">Eventbrite</a>
and you will get emailed a link to join the Discord. Make sure to check your spam folder
for all event emails. </p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question5" aria-expanded="false" aria-controls="question5">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>What is the project submission deadline?</div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question5">
<div class="card card-body text-start faq-text">
<p class="m-2">Make sure to check the event schedule to stay up to date on important
hackathon deadlines and everything you need to know about what's going on throughout the
weekend!
<br><br>
Announcements and reminders will also be broadcasted on the Discord server in case you
forget.
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question6" aria-expanded="false" aria-controls="question6">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>Where can I access workshop recordings?</div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question6">
<div class="card card-body text-start faq-text">
<p class="m-2">Workshop recordings will be available via a Google Drive folder and shared
with participants following the completion of the event. So don't worry if you happen to
miss one of this weekend's workshops because we got you covered!</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-12">
<button class="btn btn-light py-3 px-4 w-100 text-start" type="button" data-bs-toggle="collapse"
data-bs-target="#question7" aria-expanded="false" aria-controls="question7">
<div class="d-flex flex-row align-items-center justify-content-between">
<div>How do I find a team to join?</div>
<img src="assets/img/faq/dropdown.png" alt="dropdown menu arrow" class="px-2">
</div>
</button>
<div class="collapse" id="question7">
<div class="card card-body text-start faq-text">
<p class="m-2">All teams must be between 2-4 people. While you have the option to work
alone, if you want to submit your project you must work with at least one other person.
Don't worry if you don't have a team—you'll have plenty of opportunities to find one
virtually!
<br><br>
TechTogether will be hosting a variety of team formation activities throughout the first
day, and we will also have a Discord channel dedicated to team formation leading up to
and during the event.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Volunteers Section -->
<section class="page-section sponsorsbg text-black py-5" id="volunteers">
<div class="container px-4 px-lg-5 text-center ">
<h2 class="text-navy-title text-center mt-0 text-light fs-1 mb-3">Our Volunteers</h2>
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vTy1a0k2VWxSM-0tDOYv4GMKUhBYjamWqfc6k0E0M_lBjf08e8LD9T-ra5jecgUxq6a17PA_w_UhVeU/embed?start=true&loop=true&delayms=3000"
frameborder="0" class="volunteers-ppt" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
<!-- width="960" height="569" -->
</div>
<a href="https://www.nps.gov/stli/learn/photosmultimedia/virtualtour.htm" target="_blank"><img src="assets/img/eastereggs/StatueofLiberty.png" alt="Byte of Liberty" class="byte-liberty" title="Statue of Liberty Virtual Tour"/></a>
</section>
<!-- Footer-->
<section id="footer">
<div class="footerSubcontainer">
<h2>Keep in Touch</h2>
<p> Follow us on social media! If you have any questions, feel free to contact us.</p>
<div class="socials">
<a href="https://www.facebook.com/TechTogetherNewYork/" target="_blank" rel="noreferrer"><img
class="icon" src="./assets/img/socials/facebook.png" alt="Facebook" /></a>
<a href="https://www.instagram.com/techtogethernewyork/" target="_blank" rel="noreferrer"><img
class="icon" src="./assets/img/socials/instagram.png" alt="Instagram" /></a>
<a href="https://www.linkedin.com/company/techtogether-new-york/" target="_blank" rel="noreferrer"><img
class="icon" src="./assets/img/socials/linkedin.png" alt="LinkedIn" /></a>
</div>
<a class="codeOfConduct" href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" target="_blank"
rel="noreferrer">Code of Conduct</a>
</div>
</section>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- SimpleLightbox plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/SimpleLightbox/2.1.0/simpleLightbox.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
<script src="js/schedule.js"></script>
<script src="js/sponsors.js"></script>
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<!-- * * SB Forms JS * *-->
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
</body>
</html>