-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
947 lines (859 loc) · 43.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
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
<!DOCTYPE html>
<html>
<head>
<title>jacobsHack! 2021</title>
<link rel="stylesheet" href="style.css">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/favicon.png"/>
<link href="http://fonts.cdnfonts.com/css/atlantis-inline-grunge" rel="stylesheet">
</head>
<body>
<!--______________________________ NAVIGATION BAR ______________________________-->
<nav>
<div class="container">
<ul>
<li class="about"><a href="#about">About</a></li>
<li class="speakers"><a href="#speakers">Speakers</a></li>
<li class="schedule"><a href="#schedule">Schedule</a></li>
<li class="team"><a href="#team">Team</a></li>
<li class="faq"><a href="#faq">FAQ</a></li>
<li class="contact"><a href="#contact">Contact</a></li>
<li class="register">
<!--<button class="tracking-wide text-white bg-blue-600 rounded-xl" id="register-1">
<a href="https://jhack2021.herokuapp.com">Register</a>
</button>-->
</li>
</ul>
</div>
</nav>
<!--______________________________ MLH BANNER ______________________________-->
<a id="mlh-trust-badge" style="display:block;max-width:120px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/seasons/eu-2021/events?utm_source=eu-hackathon&utm_medium=TrustBadge&utm_campaign=2021-season&utm_content=blue" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2021/mlh-trust-badge-2021-blue.svg" alt="Major League Hacking 2021 Hackathon Season" style="width:100%"></a>
<!--______________________________ INTRO ______________________________-->
<section id="intro">
<div class="grid md:grid-cols-2 gap-4 grid-cols-1">
<div id="intro-txt">
<div id="intro-txt-1">jacobsHack!2021</div><br>
<div id="intro-txt-2">November 20th-21st</div><br>
<a href="https://jhack2022.herokuapp.com/">
<div style="border: solid 1px red; background-color: red; border-radius: 8px;">
Pre-registration for jacobsHack! 2022 Now Live <br>
<button>Register Here!</button>
</div>
</a>
<!--<button id="register-2">
<a href="https://jhack2021.herokuapp.com" target="_self">Register Now!</a>
</button>--><br>
</div>
</div>
</section>
<div class="gradient">
<!--______________________________ ABOUT ______________________________-->
<section id="about">
<div class="titles">
<h1 id="about-title">What is jacobsHack?</h1>
</div>
<p style="color:rgba(255,255,255,92%);">
<b>jacobs<i>Hack</i>! 2021</b>, the 7th edition of jacobs<i>Hack</i>!, is a student-run hackathon where student hackers from Jacobs University Bremen come together to create and collaborate on kick-ass projects over the course of <b>24 hours</b> filled with programming, tech talks, games, and epic Nerf gun battles. Due to the current pandemic situation, this year's event will be available only to the <b>students of JUB</b>.<br><br>
This year's theme is: <br>
<span id="theme">"The Lost City of Atlantis"</span>
</p>
<img src="img/fish.png" alt="fish" id="fish-image">
</section>
<!--______________________________ SPONSORS ______________________________-->
<section id="sponsors">
<div class="titles">
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline; max-width:45px; margin-right:50px;">
<h1 style="display:inline;" id="cont-title">Sponsors</h1>
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline;max-width:45px; margin-left:50px;">
</div>
<div class="sponsors-list">
<a href="https://www.instagram.com/usgjacobs/" rel="noopener noreferrer" target="_blank"><img src="img/sponsors/usg.png" alt="sponsor" style="max-height:150px;"/></a>
<a href="https://balloon-to.com" rel="noopener noreferrer" target="_blank"><img src="img/sponsors/balloon.png" alt="sponsor"/></a>
<br/>
<a href="https://www.elise.de" rel="noopener noreferrer" target="_blank"><img src="img/sponsors/elise.png" alt="sponsor"/></a>
<a href="http://hackp.ac/mlh-stickermule-hackathons" rel="noopener noreferrer" target="_blank"><img src="img/sponsors/sticker-mule.png" alt="sponsor" style="max-height:70px;"/></a>
</div>
</section>
<!--______________________________ SPEAKERS ______________________________-->
<section id="speakers" style="padding: 100px 10%;">
<div class="titles">
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline; max-width:45px; margin-right:50px;">
<h1 style="display:inline;" id="cont-title">Speakers</h1>
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline;max-width:45px; margin-left:50px;">
</div>
<div class="flex flex-wrap">
<div class="p-4 lg:w-1/5 md:w-1/3 sm:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<a href="#" rel="noopener noreferrer" target="_blank">
<img alt="speaker" class="flex-shrink-0 rounded-lg w-full h-60 object-cover object-center mb-4" src="img/speakers/giacomo.JPG">
</a>
<div class="w-full">
<h2 class="title-font font-semibold text-lg text-white" id="name">Dr. Giacomo d'Antonio</h2>
<h3 id="position" class="mt-1 font-medium">Software Engineer @ ELISE</h3>
<p class="mb-4 mt-3 text-white" style="opacity:60%; font-size:14px; font-weight:200;">Lead of Web Services Team<br/>10 Years experience as a professional developer</p>
</div>
</div>
</div>
<div class="p-4 lg:w-1/5 md:w-1/3 sm:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<a href="#" rel="noopener noreferrer" target="_blank">
<img alt="speaker" class="flex-shrink-0 rounded-lg w-full h-60 object-cover object-center mb-4" src="img/speakers/sven.jpeg">
</a>
<div class="w-full">
<h2 class="title-font font-semibold text-lg text-white" id="name">Sven Seele</h2>
<h3 id="position" class="mt-1 font-medium">Software Engineer @ ELISE</h3>
<p class="mb-4 mt-3 text-white" style="opacity:60%; font-size:14px; font-weight:200;">Senior Developer on R&D Team<br/>10 Years experience as a professional developer</p>
</div>
</div>
</div>
<div class="p-4 lg:w-1/5 md:w-1/3 sm:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<a href="https://www.linkedin.com/in/benjaminscher/" rel="noopener noreferrer" target="_blank">
<img alt="speaker" class="flex-shrink-0 rounded-lg w-full h-60 object-cover object-center mb-4" src="img/speakers/benjamin.JPG">
</a>
<div class="w-full">
<h2 class="title-font font-semibold text-lg text-white" id="name">Dr. Benjamin Scher</h2>
<h3 id="position" class="mt-1 font-medium">Product Strategist @ MOIA</h3>
<p class="mb-4 mt-3 text-white" style="opacity:60%; font-size:14px; font-weight:200;">In August 2021, he joined Hamburg-based MOIA, a Volkswagen subsidiary, to develop their strategy for Autonomous Driving Ridepooling</p>
</div>
</div>
</div>
<div class="p-4 lg:w-1/5 md:w-1/3 sm:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<a href="https://www.linkedin.com/in/anna-laura-seifermann/" rel="noopener noreferrer" target="_blank">
<img alt="speaker" class="flex-shrink-0 rounded-lg w-full h-60 object-cover object-center mb-4" src="img/speakers/anna-laura.JPG">
</a>
<div class="w-full">
<h2 class="title-font font-semibold text-lg text-white" id="name">Anna-Laura Seifermann</h2>
<h3 id="position" class="mt-1 font-medium">Project Manager for East and Southern Africa @ Viamo</h3>
<p class="mb-4 mt-3 text-white" style="opacity:60%; font-size:14px; font-weight:200;">She is a World Economic Forum Global Shaper and a finalist for the Digital Female Leader Award 2021 in the category “Innovation”</p>
</div>
</div>
</div>
<div class="p-4 lg:w-1/5 md:w-1/3 sm:w-1/2">
<div class="h-full flex flex-col items-center text-center">
<a href="https://www.linkedin.com/in/saad-saeed-943a7955/" rel="noopener noreferrer" target="_blank">
<img alt="speaker" class="flex-shrink-0 rounded-lg w-full h-60 object-cover object-center mb-4" src="img/speakers/saad.JPG">
</a>
<div class="w-full">
<h2 class="title-font font-semibold text-lg text-white" id="name">Saad Saaed</h2>
<h3 id="position" class="mt-1 font-medium">Founder @ Ballon<br/>Co-founder, Director of Technology @ Flink</h3>
<p class="mb-4 mt-3 text-white" style="opacity:60%; font-size:14px; font-weight:200;">BSc. Electrical and Computer Engineering at Jacobs University</p>
</div>
</div>
</div>
</div>
</section>
<!--______________________________ SCHEDULE ______________________________-->
<section id="schedule">
<div class="titles">
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline; max-width:45px; margin-right:50px;">
<h1 style="display:inline;" id="sched-title">Schedule</h1>
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline;max-width:45px; margin-left:50px;">
</div>
<h2 class="font-bold" style="color:white; padding:0px 0px 8px; font-size:24px">Saturday</h2>
<div class="overflow-auto lg:overflow-visible" id="sched-table">
<table class="table text-gray-300 border-separate space-y-6 text-md">
<thead class="text-xl">
<tr>
<th class="p-3">Start</th>
<th class="p-3">End</th>
<th class="p-3">Event</th>
</tr>
</thead>
<tbody>
<tr>
<td class="p-3">
08:00
</td>
<td class="p-3">
10:00
</td>
<td class="p-3 font-bold">
Registration and SWAG pick up
</td>
</tr>
<tr>
<td class="p-3">
10:00
</td>
<td class="p-3">
10:30
</td>
<td class="p-3 font-bold">
Opening Ceremony
</td>
</tr>
<tr>
<td class="p-3">
10:30
</td>
<td class="p-3">
11:00
</td>
<td class="p-3 font-bold">
Icebreaker: Get to meet your fellow hackers!
</td>
</tr>
<tr>
<td class="p-3">
11:00
</td>
<td class="p-3">
12:00
</td>
<td class="p-3 font-bold">
Tech Talk: State of the art and future of engineering by ELISE
</td>
</tr>
<tr>
<td class="p-3">
12:00
</td>
<td class="p-3">
</td>
<td class="p-3 font-bold">
Hacking Starts!
</td>
</tr>
<tr>
<td class="p-3">
14:00
</td>
<td class="p-3">
</td>
<td class="p-3 font-bold">
Lunch
</td>
</tr>
<tr>
<td class="p-3">
15:00
</td>
<td class="p-3">
16:00
</td>
<td class="p-3 font-bold">
Tech Talk: Spreading your wings - but how? Four pieces of advice from a Jacobs Alumni by Dr. Benjamin Scher
</td>
</tr>
<tr>
<td class="p-3">
18:00
</td>
<td class="p-3">
19:00
</td>
<td class="p-3 font-bold">
Tech talk: Another take on innovation by Anna-Laura Seifermann
</td>
</tr>
<tr>
<td class="p-3">
19:00
</td>
<td class="p-3">
</td>
<td class="p-3 font-bold">
Dinner
</td>
</tr>
</tbody>
</table>
</div>
<h2 class="font-bold" style="color:white; padding:20px 0px 8px; font-size:24px">Sunday</h2>
<div class="overflow-auto lg:overflow-visible" id="sched-table">
<table class="table text-gray-300 border-separate space-y-6 text-md">
<thead class="text-xl">
<tr>
<th class="p-3">Start</th>
<th class="p-3">End</th>
<th class="p-3">Event</th>
</tr>
</thead>
<tbody>
<tr>
<td class="p-3">
00:00
</td>
<td class="p-3">
</td>
<td class="p-3 font-bold">
Midnight Snacks
</td>
</tr>
<tr>
<td class="p-3">
03:00
</td>
<td class="p-3">
</td>
<td class="p-3 font-bold">
Nerf Gun Fight
</td>
</tr>
<tr>
<td class="p-3">
08:00
</td>
<td class="p-3">
09:00
</td>
<td class="p-3 font-bold">
Breakfast
</td>
</tr>
<tr>
<td class="p-3">
</td>
<td class="p-3">
11:00
</td>
<td class="p-3 font-bold">
Project submission deadline
</td>
</tr>
<tr>
<td class="p-3">
</td>
<td class="p-3">
12:00
</td>
<td class="p-3 font-bold">
Hacking Stops!
</td>
</tr>
<tr>
<td class="p-3">
12:00
</td>
<td class="p-3">
12:30
</td>
<td class="p-3 font-bold">
Lunch
</td>
</tr>
<tr>
<td class="p-3">
12:30
</td>
<td class="p-3">
13:00
</td>
<td class="p-3 font-bold">
Tech Talk by Saad Saeed
</td>
</tr>
<tr>
<td class="p-3">
13:00
</td>
<td class="p-3">
15:30
</td>
<td class="p-3 font-bold">
Demos - each team gets to present their project!
</td>
</tr>
<tr>
<td class="p-3">
16:00
</td>
<td class="p-3">
16:30
</td>
<td class="p-3 font-bold">
Closing Ceremony
</td>
</tr>
</tbody>
</table>
</div>
</section>
<!--______________________________ TEAM ______________________________-->
<section id="team">
<div class="titles">
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline; max-width:45px; margin-right:50px;">
<h1 style="display:inline;" id="team-title">Organizing Team</h1>
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline;max-width:45px; margin-left:50px;">
</div>
<div class="flex items-center justify-center">
<div class="grid gap-8 mt-8 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-6">
<div class="w-full max-w-xs text-center">
<a href="https://www.linkedin.com/in/danielatsayem/" rel="noopener noreferrer" target="_blank"><img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/daniela.jpeg" alt="avatar"/></a>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Daniela Tsayem</h3>
<span id="position" class="mt-1 font-medium">Main Organizer and Head of Design</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<a href="https://www.linkedin.com/in/denisa-checiu-800a21173/" rel="noopener noreferrer" target="_blank"><img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/denisa.jpeg" alt="avatar"/></a>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Denisa Checiu</h3>
<span id="position" class="mt-1 font-medium">Main Organizer</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<a href="https://www.linkedin.com/in/guptarizul/" rel="noopener noreferrer" target="_blank"><img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/rizul.jpeg" alt="avatar"/></a>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Rizul Gupta</h3>
<span id="position" class="mt-1 font-medium">Head of Recruitment</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<a href="https://www.linkedin.com/in/erlisa-kulla/" rel="noopener noreferrer" target="_blank"><img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/erlisa.jpeg" alt="avatar"/></a>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Erlisa Kulla</h3>
<span id="position" class="mt-1 font-medium">Head of IT</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<a href="https://www.linkedin.com/in/alexia-bare-411351206/" rel="noopener noreferrer" target="_blank"><img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/alexia.jpeg" alt="avatar"/></a>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Alexia Bare</h3>
<span id="position" class="mt-1 font-medium">Head of Logistics</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<a href="https://www.linkedin.com/in/ranai/" rel="noopener noreferrer" target="_blank"><img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/rana.jpeg" alt="avatar"/></a>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Rana Ibrahimova</h3>
<span id="position" class="mt-1 font-medium">Head of Sponsors and Finance</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/dongwook.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Dongwook Lee</h3>
<span id="position" class="mt-1 font-medium">Design Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/muratidzwa.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Muratidzwa Mandaza</h3>
<span id="position" class="mt-1 font-medium">Design Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/gabriela.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Gabriela Ramos</h3>
<span id="position" class="mt-1 font-medium">Recruitment Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/seema.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Seema Rabata</h3>
<span id="position" class="mt-1 font-medium">Recruitment Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/wail.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Wail Bougida</h3>
<span id="position" class="mt-1 font-medium">Recruitment Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/margaret.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Margaret Arukwe</h3>
<span id="position" class="mt-1 font-medium">IT Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/sinem.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Sinem Bilge Güler</h3>
<span id="position" class="mt-1 font-medium">IT Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/john.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">John Atanacio</h3>
<span id="position" class="mt-1 font-medium">Logistics Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/yassine.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Yassine Ait Aouicha</h3>
<span id="position" class="mt-1 font-medium">Logistics Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/ilias.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Ilias Benhmidane</h3>
<span id="position" class="mt-1 font-medium">Sponsors and Finance Team</span>
</div>
</div>
<div class="w-full max-w-xs text-center">
<!--<a href="#" rel="noopener noreferrer" target="_blank"></a>-->
<img class="object-cover object-center w-full h-48 mx-auto rounded-lg" src="img/team/sakar.jpeg" alt="avatar"/>
<div class="mt-2">
<h3 class="text-lg font-semibold" id="name">Sakar Gopal</h3>
<span id="position" class="mt-1 font-medium">Sponsors and Finance Team</span>
</div>
</div>
</div>
</div>
</section>
<!--______________________________ FAQ ______________________________-->
<section id="faq">
<div class="titles">
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline; max-width:45px; margin-right:50px;">
<h1 style="display:inline;" id="faq-title">FAQ</h1>
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline;max-width:45px; margin-left:50px;">
</div>
<div class="grid md:grid-cols-2 gap-4 grid-cols-1">
<div class="wrap-collabsible">
<input id="q1" class="toggle" type="checkbox">
<label for="q1" class="lbl-toggle">Who can attend?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
jacobs<i>Hack</i>! 2021 is open only to students of Jacobs University Bremen and those that have graduated from the university in the past twelve months.
In order to participate, you need to follow the <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" target="_blank" style="text-decoration:underline">MLH Code Of Conduct</a>.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q10" class="toggle" type="checkbox">
<label for="q10" class="lbl-toggle">How do I apply?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
Simply head to our registration portal.
Convince us why you are amazing and we will hopefully see you in Bremen in November!
We’ll accept applicants on a rolling basis.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q2" class="toggle" type="checkbox">
<label for="q2" class="lbl-toggle">Can I attend even if I don’t know how to code?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
Yes, you can also participate even if you are not a coder.
Participation is not only about coding, e.g. graphic designers can be essential to teams by making the hack look more professional.
Providing ideas for projects also counts as participation.
In addition, there will also be mentors willing to help you to learn to code at the event if you are interested.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q9" class="toggle" type="checkbox">
<label for="q9" class="lbl-toggle">What is the application process like?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
We are looking for a diverse group of hackers at our hackathon.
For this we will ask you a couple of questions in the application.
That said, we are looking for anyone who is creative or just simply passionate for technology.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q7" class="toggle" type="checkbox">
<label for="q7" class="lbl-toggle">How do teams work?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
You can work in teams of up to 4 people.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q8" class="toggle" type="checkbox">
<label for="q8" class="lbl-toggle">What if I don't have a team?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
If you don’t have a team now, don’t worry!
We’ll have team formation and ideation events geared towards helping you find people to work with throughout the event.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q4" class="toggle" type="checkbox">
<label for="q4" class="lbl-toggle">What will I eat?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
We’ve got you covered.
We’ll take care of providing meals at the event from breakfast on Saturday to Brunch on Sunday.
If you have dietary restrictions, we’ll try our best to accommodate them.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q5" class="toggle" type="checkbox">
<label for="q5" class="lbl-toggle">Where will I sleep?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
Hacking all night can get tiring.
We’ll have a few bean bags and air mattresses in a quiet room for you to nap at the venue.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q6" class="toggle" type="checkbox">
<label for="q6" class="lbl-toggle">What should I bring?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
Bring your laptop along with you, and all tech you think you’ll need or use.
We’ll take care of the food, beverages, stickers, and much more.
Feel free to bring your pillows, toiletries, headphones, etc.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q11" class="toggle" type="checkbox">
<label for="q11" class="lbl-toggle">What about hardware hacks?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
jacobs<i>Hack</i>! is an MLH hackathon.
Major League Hacking generously provides us with their hardware lab that includes a variety of hardware including and not limited to Arduino, Myo armband, Muse headband, Leap Motion, Spark Core, pebble, and Oculus.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q12" class="toggle" type="checkbox">
<label for="q12" class="lbl-toggle">What about issues of intellectual property?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
Everything you create belongs to you.
We don’t claim any rights on your Intellectual property or the intellectual property generated by you during the hackathon or outside the hackathon.
However, we reserve the right to use your submissions for promotional purposes of jacobs<i>Hack</i>!, see the Terms and Conditions for details.
</p>
</div>
</div>
</div>
<div class="wrap-collabsible">
<input id="q3" class="toggle" type="checkbox">
<label for="q3" class="lbl-toggle">How much does attending the hackathon cost?</label>
<div class="collapsible-content">
<div class="content-inner">
<p>
Admission is free!
We will provide food, beverages, and swag throughout the event.
</p>
</div>
</div>
</div>
</div>
</section>
<!--______________________________ CONTACT ______________________________-->
<section id="contact">
<div class="titles">
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline; max-width:45px; margin-right:50px;">
<h1 style="display:inline;" id="cont-title">Contact</h1>
<img src="img/symbol.png" alt="symbol" class="atlantis-symbol" style="display:inline;max-width:45px; margin-left:50px;">
</div>
<div class="bg-gray-300 rounded-lg overflow-hidden sm:mr-10 p-10 flex items-end justify-start relative" id="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2391.7608495565973!2d8.648459015831735!3d53.16833017994205!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47b12ca189108299%3A0x68806e1d530b2b1d!2sJacobs%20University%20IRC%2C%20Campus%20Ring%201%2C%2028759%20Bremen!5e0!3m2!1sen!2sde!4v1630875721734!5m2!1sen!2sde" width="100%" height="100%" class="absolute inset-0" title="map" marginheight="0" marginwidth="0" scrolling="no" style="filter: grayscale(0.3) contrast(0.8) opacity(0.7);"></iframe>
<div class="bg-white relative flex flex-wrap py-6 px-8 rounded shadow-md">
<div class="grid md:grid-cols-2 gap-4 grid-cols-1">
<div>
<h2 class="title-font font-semibold text-gray-900 tracking-widest text-xs">ADDRESS</h2>
<p class="-1" style="font-size:16px;">Campus Ring 1<br>28759 Bremen<br>Germany</p>
</div>
<div>
<h2 class="title-font font-semibold text-gray-900 tracking-widest text-xs">TEAM EMAIL</h2>
<a class="text-indigo-500 leading-relaxed" href="mailto:[email protected]">[email protected]</a>
<h2 class="title-font font-semibold text-gray-900 tracking-widest text-xs mt-4">ORGANIZERS EMAILS</h2>
<p class="leading-relaxed" style="font-size:16px;"><a class="text-indigo-500 leading-relaxed" href="mailto:[email protected]">[email protected]</a><br>
<a class="text-indigo-500 leading-relaxed" href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</div>
</section>
<!--______________________________ FOOTER ______________________________-->
<section id="footer">
<footer class="py-5">
<div class="footer-container">
<p>
<button type="button" onclick="openModal('imprint')" id="ft">Imprint</small></button> -
<button type="button" onclick="openModal('terms')"><small id="ft">Terms & Conditions</small></button> -
<button type="button" onclick="openModal('privacy')"><small id="ft">Privacy Policy</small></button>
</p>
<br />
<p class="m-0 text-center small" id="copyright">Copyright © 2021 jacobs<i>Hack</i>!
</p>
</div>
</footer>
</section>
</div>
<!--______________________________ IMPRINT MODAL ______________________________-->
<dialog id="imprint" class="bg-transparent z-0 relative w-screen h-screen">
<div class="p-7 flex justify-center items-center fixed left-0 top-0 w-full h-full bg-gray-900 bg-opacity-50 z-50 transition-opacity duration-300 opacity-0">
<div id="cont" class="bg-white rounded-lg w-1/2 relative" style="height:80vh;">
<div class="flex flex-col items-start">
<div class="p-7 flex items-center w-full">
<div class="text-gray-900 font-bold text-lg">jacobs<i>Hack</i>! Imprint</div>
<svg onclick="modalClose('imprint')" class="ml-auto fill-current text-gray-700 w-5 h-5 cursor-pointer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
<path d="M14.53 4.53l-1.06-1.06L9 7.94 4.53 3.47 3.47 4.53 7.94 9l-4.47 4.47 1.06 1.06L9 10.06l4.47 4.47 1.06-1.06L10.06 9z" />
</svg>
</div>
<div class="px-7 overflow-x-hidden overflow-y-auto" id="imprint-content">
<iframe src="legal/imprint.html" frameBorder="0" width="100%" height="100%"></iframe>
</div>
</div>
</div>
</div>
</dialog>
<!--______________________________ TERMS & CONDITIONS MODAL ______________________________-->
<dialog id="terms" class="bg-transparent z-0 relative w-screen h-screen">
<div class="p-7 flex justify-center items-center fixed left-0 top-0 w-full h-full bg-gray-900 bg-opacity-50 z-50 transition-opacity duration-300 opacity-0">
<div id="cont" class="bg-white rounded-lg w-1/2 relative" style="height:80vh;">
<div class="flex flex-col items-start">
<div class="p-7 flex items-center w-full">
<div class="text-gray-900 font-bold text-lg">jacobs<i>Hack</i>! Terms & Conditions</div>
<svg onclick="modalClose('terms')" class="ml-auto fill-current text-gray-700 w-5 h-5 cursor-pointer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
<path d="M14.53 4.53l-1.06-1.06L9 7.94 4.53 3.47 3.47 4.53 7.94 9l-4.47 4.47 1.06 1.06L9 10.06l4.47 4.47 1.06-1.06L10.06 9z" />
</svg>
</div>
<div class="px-7 overflow-x-hidden overflow-y-auto" id="terms-content">
<iframe src="legal/terms.html" frameBorder="0" width="100%" height="100%"></iframe>
</div>
</div>
</div>
</div>
</dialog>
<!--______________________________ PRIVACY POLICY MODAL ______________________________-->
<dialog id="privacy" class="bg-transparent z-0 relative w-screen h-screen">
<div class="p-7 flex justify-center items-center fixed left-0 top-0 w-full h-full bg-gray-900 bg-opacity-50 z-50 transition-opacity duration-300 opacity-0">
<div id="cont"class="bg-white rounded-lg w-1/2 relative" style="height:80vh;">
<div class="flex flex-col items-start">
<div class="p-7 flex items-center w-full">
<div class="text-gray-900 font-bold text-lg">jacobs<i>Hack</i>! Privacy Policy</div>
<svg onclick="modalClose('privacy')" class="ml-auto fill-current text-gray-700 w-5 h-5 cursor-pointer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
<path d="M14.53 4.53l-1.06-1.06L9 7.94 4.53 3.47 3.47 4.53 7.94 9l-4.47 4.47 1.06 1.06L9 10.06l4.47 4.47 1.06-1.06L10.06 9z" />
</svg>
</div>
<div class="px-7 overflow-x-hidden overflow-y-auto" id="privacy-content">
<iframe src="legal/privacy.html" frameBorder="0" width="100%" height="100%"></iframe>
</div>
</div>
</div>
</div>
</dialog>
<!--______________________________ BACK TO TOP BUTTON ______________________________-->
<button onclick="topFunction()" id="top-btn" title="Go to top">▲</button>
<!--______________________________ ACTIVE NAV LINK JS ______________________________-->
<script>
const sections = document.querySelectorAll("section");
const navLi = document.querySelectorAll("nav .container ul li");
window.addEventListener("scroll", () => {
let current = "";
sections.forEach((section) => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (pageYOffset >= sectionTop - sectionHeight / 3) {
current = section.getAttribute("id");
}
});
navLi.forEach((li) => {
li.classList.remove("active");
if (li.classList.contains(current)) {
li.classList.add("active");
}
});
});
</script>
<!--______________________________ MODAL JS ______________________________-->
<script>
function openModal(key) {
document.getElementById(key).showModal();
document.body.setAttribute('style', 'overflow: hidden;');
document.getElementById(key).removeAttribute('style');
document.getElementById(key).setAttribute('style', 'display:block; z-index:1;');
document.getElementById(key).children[0].scrollTop = 0;
document.getElementById(key).children[0].classList.remove('opacity-0');
document.getElementById(key).children[0].classList.add('opacity-100')
}
function modalClose(key) {
document.getElementById(key).setAttribute('style', 'display: none; z-index:-1;');
document.getElementById(key).children[0].classList.remove('opacity-100');
document.getElementById(key).children[0].classList.add('opacity-0');
setTimeout(function () {
document.getElementById(key).close();
document.body.removeAttribute('style');
}, 100);
}
</script>
<!--______________________________ BACK TO TOP BUTTON JS ______________________________-->
<script>
var mybutton = document.getElementById("top-btn");
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 500 || document.documentElement.scrollTop > 500) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
<!--______________________________ SCHEDULE TABLE STYLES ______________________________-->
<style>
thead {
background-color: rgb(65, 105, 225);
}
.table {
border-spacing: 0 10px;
width: 100%;
}
.table tr {
border-radius: 20px;
background-color: rgba(65, 105, 225, 30%);
transition: 0.3s ease background-color;
}
.table tr:hover {
background-color: rgba(65, 105, 225, 70%);
transition: 0.3s ease background-color;
}
tr td:nth-child(n+3),
tr th:nth-child(n+3) {
border-radius: 0 .625rem .625rem 0;
}
tr td:nth-child(1),
tr th:nth-child(1) {
border-radius: .625rem 0 0 .625rem;
}
</style>
</html>