-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1544 lines (1485 loc) · 70.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- TabIcon -->
<link rel="icon" href="assets/icons/favicon.png" />
<!-- Bootstrap -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<!-- Font Awesome 4 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<!--main css-->
<link rel="stylesheet" href="dist/css/style.min.css" />
<link rel="stylesheet" href="dist/css/responsive.min.css" />
<link rel="stylesheet" href="dist/css/header.min.css" />
<link rel="stylesheet" href="dist/css/schedule.min.css" />
<link rel="stylesheet" href="dist/css/accordion.min.css" />
<link rel="stylesheet" href="dist/css/canvas-particle.min.css" />
<link rel="stylesheet" href="dist/css/carousel.min.css" />
<link rel="stylesheet" href="dist/css/devfolio.css" />
<link rel="stylesheet" href="dist/css/footer.min.css" />
<link rel="stylesheet" href="dist/css/darkmode.min.css" />
<link rel="stylesheet" href="dist/css/scrollbar.min.css" />
<link rel="stylesheet" href="dist/css/webinar.min.css" />
<title>HackSRM 3.0</title>
</head>
<body>
<div id="darkmode-toggle">
<span>💡</span>
<p id="tltip">I ❤️ Dark mode</p>
</div>
<!-- ======= Header ======= -->
<header>
<div class="burger-container">
<div id="burger">
<div class="bar topBar"></div>
<div class="bar btmBar"></div>
</div>
</div>
<ul class="menu">
<li class="menu-item"><a href="#hero">Home</a></li>
<li class="menu-item"><a href="#about">About</a></li>
<li class="menu-item"><a href="#prizes">Prizes</a></li>
<li class="menu-item"><a href="#themes">Themes</a></li>
<li class="menu-item"><a href="#schedule">Schedule</a></li>
<li class="menu-item"><a href="#faq">FAQs</a></li>
<li class="menu-item"><a href="#sponsors">Sponsors</a></li>
<li class="menu-item"><a href="#team">Team</a></li>
<li class="menu-item"><a href="#contact">Contact Us</a></li>
</ul>
</header>
<!-- End Header -->
<main>
<!-- ======= HERO ======= -->
<section id="hero" class="hero page-section">
<div class="particle-background">
<canvas id="canvas-particles"></canvas>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 left">
<div>
<div class="typewriter-wrapper">
<div class="typed"></div>
</div>
<div class="location-date-wrapper">
<div class="location">
<i class="fa fa-map-marker" aria-hidden="true"></i>
<span>Online</span>
</div>
<div class="date">
<!--<i class="fa fa-calendar" aria-hidden="true"></i>-->
<span>📅 20th-22th November</span>
</div>
</div>
</div>
<div class="starts-in">
<span id="startsIn">Hackathon Ends In ⏰</span>
<div class="main">
<div class="time-wrapper">
<div class="time">
<div id="dayTens" class="box">0</div>
<div id="dayOnes" class="box">0</div>
</div>
<span>Days</span>
</div>
<div class="time-wrapper">
<div class="time">
<div id="hourTens" class="box">0</div>
<div id="hourOnes" class="box">0</div>
</div>
<span>Hours</span>
</div>
<div class="time-wrapper">
<div class="time">
<div id="minTens" class="box">0</div>
<div id="minOnes" class="box">0</div>
</div>
<span>Minutes</span>
</div>
</div>
</div>
<div class="btn-wrapper">
<button id="devfolio-apply-now">
<svg
class="logo"
xmlns="http://www.w3.org/2000/svg"
fill="#fff"
viewBox="0 0 115.46 123.46"
style="height: 24px; width: 24px; margin-right: 8px"
>
<path
d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z"
/>
<path
d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"
/>
</svg>
Apply with Devfolio
</button>
<a href="https://discord.gg/eSZDZ3k">
<button class="discord">
<img src="assets/icons/discord.svg" alt="" />
<span>Join our server</span>
</button>
</a>
</div>
</div>
<div class="col-md-6 right">
<div id="logo-wrapper">
<img src="assets/images/logo.png" alt="" />
</div>
<div class="organiser-logo">
<h4>Organised by students of</h4>
<div class="logo-wrapper">
<img src="assets/images/ntl.png" alt="" />
<img src="assets/images/srmap.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END HERO -->
<!-- ======= ABOUT ======= -->
<section id="about" class="about page-section dark-mode">
<div class="container-fluid">
<div class="row first">
<div class="col-md-8">
<div class="title">About Us</div>
<div class="content">
Welcome to HackSRM! <b>HackSRM</b> is a premium student 🎓 led national level hackathon 🖥️ held in India that aims to
gather the great student minds under one roof and solve potential <b>real world problem</b> through technology 👨💻
under <b>45 hours</b> 🕒. We belong to the technological hub of the country where marvels of <b>innovation</b> ⚙️ and
<b>creativity</b> 💡 have always been celebrated, HackSRM is one such celebration. HackSRM is a platform for young
geniuses 🧠 to not only exercise their skills to the topmost level but also to build a better tomorrow by ideating,
constructing and innovating vast <b>solutions</b>.
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="title">Why HackSRM</div>
<div class="content">
<b>HackSRM</b> is the perfect blend of imagination 💡, novelty and fun. The 45 hour ⏳ non-stop technical festival
will host an amazing panel of <b>speakers</b> 🤵, <b>sponsors</b> 💰 and <b>swag</b> 👕 ;). With exciting goodies, you
are destined to have a mindful of pure genius. If this is your <b>first ever hackathon</b> , we will make sure you
have an enriching and memorable experience 🔥 that you will cherish for days to come. <br /><br />
<div>So join us on this path of epicness! ✨</div>
</div>
</div>
</div>
<div class="button-wrapper">
<a href="assets/coc/code-of-conduct.pdf" target="_blank">
<button>Code Of Conduct</button>
</a>
</div>
</div>
</section>
<!-- END ABOUT -->
<!-- ======= ABOUT ======= -->
<section class="page-section glimpse">
<p class="section-title">Glimpse of HackSRM 2.0</p>
<div class="container">
<div id="slider">
<input type="radio" name="slider" id="s1" checked />
<input type="radio" name="slider" id="s2" />
<input type="radio" name="slider" id="s3" />
<input type="radio" name="slider" id="s4" />
<input type="radio" name="slider" id="s5" />
<label for="s1" id="slide1">
<img src="assets/images/glimpse/1.JPG" alt="" />
</label>
<label for="s2" id="slide2">
<img src="assets/images/glimpse/2.JPG" alt="" />
</label>
<label for="s3" id="slide3">
<img src="assets/images/glimpse/3.JPG" alt="" />
</label>
<label for="s4" id="slide4">
<img src="assets/images/glimpse/4.JPG" alt="" />
</label>
<label for="s5" id="slide5">
<img src="assets/images/glimpse/5.JPG" alt="" />
</label>
</div>
</div>
<div class="container stats">
<div class="row">
<div class="col-md-4">
<div class="box">
<p class="icon">💻</p>
<p class="value">44</p>
<p class="title">Teams</p>
</div>
</div>
<div class="col-md-4">
<div class="box">
<p class="icon">👨💻</p>
<p class="value">144</p>
<p class="title">Hackers</p>
</div>
</div>
<div class="col-md-4">
<div class="box">
<p class="icon">🌏</p>
<p class="value">29</p>
<p class="title">States</p>
</div>
</div>
</div>
</div>
</section>
<!-- END ABOUT -->
<!-- ======= PRIZES ======= -->
<section id="prizes" class="prizes dark-mode">
<h2 class="section-title">Prizes 🎁</h2>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="prize-card first">
<img src="assets/images/prizes/first-1.png" alt="" />
<div>
<p>1st Prize! <br />INR 15,000</p>
</div>
<ul>
<li>6 months free 1Password family subscription.</li>
<li>Coding Blocks 90% off discount coupons</li>
<li>CipherSchools 85% off discount coupons</li>
<li>Swags from Devfolio</li>
<li>Fold Premium access*</li>
<li>Internship and Full-time opportunities</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="prize-card second">
<img src="assets/images/prizes/second-1.png" alt="" />
<div>
<p>2nd Prize! <br />INR 10,000</p>
</div>
<ul>
<li>Swags from Devfolio</li>
<li>Coding Blocks 80% off discount coupons</li>
<li>CipherSchools 75% off discount coupons</li>
<li>Fold Premium access*</li>
<li>Internship and Full-time opportunities</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="prize-card third">
<img src="assets/images/prizes/third-1.png" alt="" />
<div>
<p>3rd Prize! <br />INR 6,000</p>
</div>
<ul>
<li>Swags from Devfolio</li>
<li>Coding Blocks 70% off discount coupons</li>
<li>CipherSchools 65% off discount coupons</li>
<li>Fold Premium access*</li>
<li>Internship and Full-time opportunities</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Prizes for the Finalists</h3>
<div class="box-wrapper">
<div class="box">
<p>1. 1500 free API calls on sawolabs.com</p>
<p>2. One Personal Edition plus a one-year subscription to Wolfram|Alpha Pro.(Finalists)</p>
<p>3. 50%off course coupons for all participants to be decided by Zubi (With INR 700 cashback on WazirX)</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Prizes for all participants</h3>
<div class="box-wrapper">
<div class="box">
<p>1. Certificate of participation</p>
<p>2. Jetbrains all student pack worth $649</p>
<p>3. Nimblebox cloud credits worth $100</p>
<p>4. 30 Days License Wolfarm|Alpha Pro</p>
<p>5. Coding Blocks 55% Discount Coupons</p>
<p>6. repl.it 3 Months Hackerplan</p>
<p>7. Linode promo code worth $20</p>
</div>
</div>
</div>
</div>
</div>
<p class="sub-heading">Sponsor Challenges</p>
<div class="row">
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Ethereum-Matic Bounty</h3>
<div class="box-wrapper">
<div class="box">
<p>1. Best hack built on top of Ethereum (Rs.10000)</p>
<p>2. For teams that integrate Matic in their hacks as well the prize money will be higher (Rs.15000)</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Dapp on Tezos</h3>
<div class="box-wrapper">
<div class="box">
<p>1. 10000 INR for best Dapp built on Tezos</p>
<p>2. 5000 INR for Runners-up</p>
<p>3. Continuity Grant opportunity for exceptional builders</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best AR/VR Hack by echoAR</h3>
<div class="box-wrapper">
<div class="box">
<p>1. $50 amazon gift card from echoAR</p>
<p>2. 1-month free business tier access for echoAR</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Dapp on Portis</h3>
<div class="box-wrapper">
<div class="box">
<p>1. 200 USD (in crypto) for best Dapp built on Portis</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Prize from nimblebox.ai</h3>
<div class="box-wrapper">
<div class="box">
<p>
1. $100 gift card from nimblebox.ai to the winning team
<br />
(Winners MUST use the nimblebox.ai platform as part of their project to be eligible for a reward).
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Computer Vision Hack by OurEye.ai</h3>
<div class="box-wrapper">
<div class="box">
<p>Rs 10,000 for the best hack in detection of body/health related parameters with the help of computer vision</p>
</div>
</div>
</div>
</div>
</div>
<p class="sub-heading">Category prizes</p>
<div class="row">
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Healthcare Hack 💉</h3>
<div class="box-wrapper">
<div class="box">
<p class="category-prize-info">Cash prize of INR 1000</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Fin-Tech Hack 💲</h3>
<div class="box-wrapper">
<div class="box">
<p class="category-prize-info">Cash prize of INR 1000</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Ed-Tech Hack 📚</h3>
<div class="box-wrapper">
<div class="box">
<p class="category-prize-info">Cash prize of INR 1000</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best All Girls Team 👧</h3>
<div class="box-wrapper">
<div class="box">
<p class="category-prize-info">Cash prize of INR 1000</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="cprize-card">
<h3 class="prize-title">Best Travel and Tourism Hack 🗺️</h3>
<div class="box-wrapper">
<div class="box">
<p class="category-prize-info">Cash prize of INR 1000</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END PRIZES -->
<!-- ======= THEMES ======= -->
<section id="themes" class="themes page-section dark-mode">
<h2 class="section-title">Themes 🎨</h2>
<div class="container">
<div class="theme-container">
<div class="row left">
<div class="col-md-8 info">
<p class="theme-title">Education</p>
<p class="theme-info">
Find new ways for the acquisition of the knowledge, skills. Showcase what could be the future of education. Blend
your skills and let the ideas impact on this digital age.
</p>
</div>
<div class="col-md-4 image">
<img src="assets/images/themes/education.svg" alt="" />
</div>
</div>
</div>
<div class="theme-container">
<div class="row">
<div class="col-md-8 info">
<p class="theme-title">Women's Safety</p>
<p class="theme-info">
The day when a woman can freely walk on the roads at night is the day of real Independence - Mahatma Gandhi. Why
not make it possible! Use your skills and be a part of true freedom.
</p>
</div>
<div class="col-md-4 image">
<img src="assets/images/themes/women-safety.svg" alt="" />
</div>
</div>
</div>
<div class="theme-container">
<div class="row left">
<div class="col-md-8 info">
<p class="theme-title">Healthcare</p>
<p class="theme-info">
Code against health problems, aim for real-life challenges and draw solutions that can drive social impact
</p>
</div>
<div class="col-md-4 image">
<img src="assets/images/themes/covid2.svg" alt="" />
</div>
</div>
</div>
<div class="theme-container">
<div class="row">
<div class="col-md-8 info">
<p class="theme-title">Fin-Tech</p>
<p class="theme-info">
Financial technology is the technology and innovation that aims to compete with traditional financial methods in
the delivery of financial services.
</p>
</div>
<div class="col-md-4 image">
<img src="assets/images/themes/fintech3.svg" alt="" />
</div>
</div>
</div>
<div class="theme-container">
<div class="row left">
<div class="col-md-8 info">
<p class="theme-title">Travel & Tourism</p>
<p class="theme-info">
The advent of technology is fostering a change in travel and tourism, innovate and help tourists to reduce costs,
improve customer hospitality, hospitality automation, navigation, etc...
</p>
</div>
<div class="col-md-4 image">
<img src="assets/images/themes/travel.svg" alt="" />
</div>
</div>
</div>
<div class="theme-container">
<div class="row">
<div class="col-md-8 info">
<p class="theme-title">Open Innovation</p>
<p class="theme-info">
An open-ended theme where the only restriction is your imagination. Build the ideas that you believe in and make a
difference. It can either be hardware or software.
</p>
</div>
<div class="col-md-4 image">
<img src="assets/images/themes/open-innovation.svg" alt="" />
</div>
</div>
</div>
</div>
</section>
<!-- END TRACKS -->
<!-- ======= SCHEDULE ======= -->
<section id="schedule" class="schedule page-section dark-mode">
<h2 class="section-title">Schedule ⌚</h2>
<div class="btn-wrapper">
<button id="day-1" class="day-button">Day-1</button>
<button id="day-2" class="day-button">Day-2</button>
<button id="day-3" class="day-button">Day-3</button>
</div>
<!-- DAY 1 SCHEDULE -->
<div id="schedule-D1">
<div class="timeline">
<div class="container- right">
<div class="text-wrapper">
<h2 class="day-num">DAY 1️⃣</h2>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Hackathon Begins
<p>6:30 PM</p>
</h2>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Inauguration 🏁
<p>6:30 PM - 7:30 PM</p>
</h2>
<p>Welcome speech, intro to judges, intro to team, Hackathon rules and regulations</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Round-1 ⌨️✅
<p>10:00 PM - 12:00 AM</p>
<p>Idea and Project name submission</p>
</h2>
<p></p>
</div>
</div>
</div>
</div>
<!-- DAY 2 SCHEDULE -->
<div id="schedule-D2">
<div class="timeline">
<div class="container- right">
<div class="text-wrapper">
<h2 class="day-num">DAY 2️⃣</h2>
</div>
</div>
<!--<div class="container- right">
<div class="text-wrapper">
<h2>
First Commit ✅
<p>12:00 AM - 12:30 AM</p>
</h2>
<p>Hackers should submit their finalised idea and work for the rest of the hackathon.</p>
</div>
</div>-->
<div class="container- right">
<div class="text-wrapper">
<h2>
Amusement Activities Evaluation 🕹️
<p>3:00 PM - 6:00 PM</p>
</h2>
<p>Games, Kahoot, Events</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Mentor Evaluation
<p>6:00 PM - Onwards</p>
</h2>
<p>Hackers are required to submit their performed code.</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
echoAR Workshop 💻
<p>9:30 PM - 10:30 PM</p>
</h2>
<p>How to Build a Cloud-Connected AR/VR App in 15 Minutes or Less</p>
</div>
</div>
</div>
</div>
<!-- DAY 3 SCHEDULE -->
<div id="schedule-D3">
<div class="timeline">
<div class="container- right">
<div class="text-wrapper">
<h2 class="day-num">DAY 3️⃣</h2>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
SAWOlabs Webinar 💻
<p>9:30 PM - 10:30 PM</p>
</h2>
<p>Passwordless Authentication with SAWOLabs</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Round 2 ✅
<p>11:30 AM</p>
</h2>
<p>Final commit, after which no submissions will be accepted</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Announcement of top 10 📈
<p>12:30 PM</p>
</h2>
<p>Announcement of top 10 on all social media platforms</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Pitch session 🎤
<p>1:30 PM - Onwards</p>
</h2>
<p>Participants have to pitch their ideas in front of judges on a video call</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
End of Pitch 🍨
<p>4:00 PM</p>
</h2>
<p>End of Pitch and talk by judges</p>
</div>
</div>
<div class="container- right">
<div class="text-wrapper">
<h2>
Announcement of Winners 🥇
<p>6:00 PM - 9:00 PM</p>
</h2>
<p>Final winners will be announced on the website and on all social media platforms</p>
</div>
</div>
</div>
</div>
</section>
<!-- END SCHEDULE -->
<!-- ======= WEBINARS ======= -->
<section id="webinar" class="webinar page-section dark-mode">
<h3 class="section-title">Webinars</h3>
<div class="container-fluid">
<div class="containerr">
<div class="carousel">
<input type="radio" id="carousel-1" name="carousel[]" checked />
<input type="radio" id="carousel-2" name="carousel[]" />
<input type="radio" id="carousel-3" name="carousel[]" />
<ul class="carousel__items">
<li class="carousel__item">
<img src="assets/images/webinars/ayon.jpeg" alt="" />
</li>
<li class="carousel__item">
<img src="assets/images/webinars/alon.jpeg" alt="" />
</li>
<li class="carousel__item">
<img src="assets/images/webinars/sawo.jpeg" alt="" />
</li>
</ul>
<div class="carousel__prev">
<label for="carousel-1"></label>
<label for="carousel-2"></label>
<label for="carousel-3"></label>
</div>
<div class="carousel__next">
<label for="carousel-1"></label>
<label for="carousel-2"></label>
<label for="carousel-3"></label>
</div>
<div class="carousel__nav">
<label for="carousel-1"></label>
<label for="carousel-2"></label>
<label for="carousel-3"></label>
</div>
</div>
</div>
</div>
</section>
<!-- ======= WEBINARS END ======= -->
<!-- ======= FAQs ======= -->
<section id="faq" class="faq page-section dark-mode">
<div class="section-title">FAQs 🙋</div>
<div class="container-fluid">
<ul id="accordion" class="accordion">
<li>
<div class="link">
<p class="question">What is a hackathon ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">
A hackathon is a programming competition in which competitors use technology to build innovative projects within a
fixed time duration. There will be opportunities to win cool prizes, learn from our key-note speakers, and network
with our sponsors.
</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">Who can participate in HackSRM ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">
Anyone! Whether you are a total beginner or a tech wizard, it doesn’t matter. We encourage anyone who is
interested in learning more about Hackathons, programming, and the tech industry to join HackSRM!
</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">Do I have to know how to code to join ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">
Nope! You can learn along the way or team up with experienced programmers. Skills such as designing, business
planning, and etc are all going to impact the projects in various ways!
</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">How much does it cost to participate in HackSRM ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">
Zero. Zip. Zilch. Nada. Nothing. Admission to HackSRM is completely free, thanks to our sponsors!
</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">Is it a team event ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">Yes, you can have a minimum of 2 and maximum 4 members in a team.</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">Can I apply individually ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">Yes, you can also form a team after you get selected.</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">Is there a code of conduct ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">
Attendees must abide by our <a href="assets/coc/code-of-conduct.pdf">Code of Conduct</a>. We want to respect each
other and keep HackSRM a safe environment for all participants.
</li>
</ul>
</li>
<li>
<div class="link">
<p class="question">What is the venue of the hackathon ?</p>
<i class="fa fa-chevron-down"></i>
</div>
<ul class="submenu">
<li class="answer">
HackSRM will be hosted on November 20th-22th, 2020, completely virtually. All you need is to create a Discord
account to communicate with our HackSRM community.
</li>
</ul>
</li>
</ul>
</div>
</section>
<!-- END FAQs-->
<section id="sponsors" class="sponsors page-section dark-mode">
<h2 class="section-title">Sponsored By</h2>
<div class="container">
<div class="tier-title-wrapper">
<p class="tier-title">Platinum</p>
<div class="line"></div>
</div>
<div class="row">
<div class="col-md-4">
<a href="https://devfolio.co/" target="_blank">
<img src="assets/images/sponsors/devfolio.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="http://oureye.ai/" target="_blank">
<img src="assets/images/sponsors/oureye.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.nimblebox.ai/" target="_blank">
<img src="assets/images/sponsors/nimblebox.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.echoar.xyz/" target="_blank">
<img src="assets/images/sponsors/echoAR.png" alt="" />
</a>
</div>
</div>
<!-- GOLD -->
<div class="tier-title-wrapper">
<p class="tier-title">Gold</p>
<div class="line"></div>
</div>
<div class="row">
<div class="col-md-4">
<a href="https://matic.network/" target="_blank">
<img src="assets/images/sponsors/matic.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://fold.money/" target="_blank">
<img id="fold" src="assets/images/sponsors/fold.svg" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.portis.io/" target="_blank">
<img id="portis" src="assets/images/sponsors/portis.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://tezos.com/" target="_blank">
<img id="" src="assets/images/sponsors/tezos.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.jetbrains.com/" target="_blank">
<img id="jetbrains" src="assets/images/sponsors/jetbrains.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a id="framer" href="https://www.framer.com/" target="_blank">
<img src="assets/images/sponsors/framer.png" alt="" />
<p>Framer</p>
</a>
</div>
<div class="col-md-4">
<a href="https://1password.com/" target="_blank">
<img id="" src="assets/images/sponsors/1P.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://cipherschools.com/" target="_blank">
<img src="assets/images/sponsors/cipher-schools.png" alt="" />
</a>
</div>
</div>
<!-- SILVER -->
<div class="tier-title-wrapper">
<p class="tier-title">Silver</p>
<div class="line"></div>
</div>
<div class="row">
<div class="col-md-4">
<a href="https://repl.it/" target="_blank">
<img id="" src="assets/images/sponsors/replit.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://codingblocks.com/" target="_blank">
<img src="assets/images/sponsors/coding-blocks.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.linode.com/" target="_blank">
<img src="assets/images/sponsors/linode.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://www.wolfram.com/language/" target="_blank">
<img src="assets/images/sponsors/wolfram.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://givemycertificate.com/" target="_blank">
<img id="gmc" src="assets/images/sponsors/GMC_logo.png" alt="" />
</a>
</div>
<div class="col-md-4">
<a href="https://zubi.io/" target="_blank">
<img id="zubi" src="assets/images/sponsors/zubi.png" alt="" />
</a>
</div>
</div>
<div class="tier-title-wrapper">
<p class="tier-title">Tech partner</p>
<div class="line"></div>
</div>
<div class="row">
<div class="col-md-4">
<a href="https://sawolabs.com/" target="_blank">