-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
3447 lines (3294 loc) · 246 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="build/images/logo.svg">
<!-- HTML Meta Tags -->
<title>HackMoL3.0</title>
<meta name="description" content="HackMol3.0 is a community - focused 36 Hours Long Virtual Hackathon organized by DSC NIT Jalandhar, designed especially for the needs of the community itself. Whether you are a beginner or expert ,here is a perfect chance to show your skills and witness a competitive yet inclusive developer community around it.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="HackMoL3.0">
<meta itemprop="description" content="HackMol3.0 is a community - focused 36 Hours Long Virtual Hackathon organized by DSC NIT Jalandhar, designed especially for the needs of the community itself. Whether you are a beginner or expert ,here is a perfect chance to show your skills and witness a competitive yet inclusive developer community around it.">
<meta itemprop="image" content="build/images/meta.jpg">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://hackmol3.tech">
<meta property="og:type" content="website">
<meta property="og:title" content="HackMoL3.0">
<meta property="og:description" content="HackMol3.0 is a community - focused 36 Hours Long Virtual Hackathon organized by DSC NIT Jalandhar, designed especially for the needs of the community itself. Whether you are a beginner or expert ,here is a perfect chance to show your skills and witness a competitive yet inclusive developer community around it.">
<meta property="og:image" content="build/images/meta.jpg">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="HackMoL3.0">
<meta name="twitter:description" content="HackMol3.0 is a community - focused 36 Hours Long Virtual Hackathon organized by DSC NIT Jalandhar, designed especially for the needs of the community itself. Whether you are a beginner or expert ,here is a perfect chance to show your skills and witness a competitive yet inclusive developer community around it.">
<meta name="twitter:image" content="build/images/meta.jpg">
<!-- Meta Tags End Here-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link href="build/css/tailwind.css" rel="stylesheet">
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
</head>
<style>
.devfolio-button {
margin: 0 0 16px 0;
}
</style>
<body class="bg-gray-900">
<!-- NAVBAR SECTION STARTS-->
<header class="text-gray-400 bg-gray-900 font-body sticky top-0 lg:bg-opacity-50 0 z-10">
<div class="flex items-center justify-between flex-wrap fixed w-full top-0">
<div class="block lg:hidden mt-2 ml-2">
<button id="nav-toggle" class="flex items-center px-3 py-3 rounded-full text-white bg-pink-600 ">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
width="24" height="24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h7" />
</svg>
</button>
</div>
<div class="container bg-gray-900 mx-auto hidden lg:flex flex-wrap p-5 flex-col md:flex-row items-center " id="nav-content">
<nav class="flex lg:w-2/3 flex-wrap items-center text-base md:ml-auto">
<a href="#about" class="mr-5 hover:text-white">About</a>
<a href="#rules" class="mr-5 hover:text-white">Rules</a>
<a href="#schedule" class="mr-5 hover:text-white">Schedule</a>
<a href="#prizes" class="mr-5 hover:text-white">Prizes</a>
<a href="#sponsors" class="mr-5 hover:text-white">Sponsors</a>
<a href="#team" class="mr-5 hover:text-white">Team & Mentors</a>
<a href="#faq" class="mr-5 hover:text-white">FAQ</a>
<a href="#contact" class="mr-5 hover:text-white">Contact</a>
</nav>
<div class="lg:w-1/3 inline-flex lg:justify-end ml-5 lg:ml-0">
<span class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start">
<a href="https://www.facebook.com/DSCNITJ/" target="_blank"
class="text-gray-400 hover:text-pink-400">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a href="https://www.instagram.com/dscnitj/" target="_blank"
class="ml-3 text-gray-400 hover:text-pink-400">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"></path>
</svg>
</a>
<a href="https://www.linkedin.com/company/dscnitj/" target="_blank"
class="ml-3 text-gray-400 hover:text-pink-400">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z">
</path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</span>
</div>
</div>
</div>
</header>
<!-- NAVBAR SECTION ENDS-->
<!-- HERO SECTION STARTS-->
<section class="text-gray-400 bg-gray-900 font-body hero" id="hero">
<div class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:order-first order-2 lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center">
<h1 class="title-font sm:text-6xl text-3xl font-black text-white ">HackMoL3.0
</h1>
<h2 class="text-xl text-pink-400 tracking-widest font-medium title-font mb-4">25th February, 2022 - 28th February, 2022
</h2>
<p class="mb-8 leading-relaxed">A 36-hour long virtual hackathon by <span class='text-pink-400'> DSC NIT
Jalandhar</span> with lots of exciting prizes!
</p>
<div class="flex-initial md:flex justify-center">
<div class="devfolio-button">
<div class="apply-button" data-hackathon-slug="hackmol3" data-button-theme="light" style="height: 36px; width: 248px">
</div>
</div>
<div>
<a href="https://discord.gg/4HyUncX4at" target="_blank" class="ml-0 md:ml-4 justify-center items-center flex text-gray-400 bg-gray-800 border-0 py-2 px-12 font-semibold focus:outline-none hover:bg-gray-700 hover:text-white rounded text-lg">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<path fill="none" d="M0 0h24v24H0z" />
<path
d="M10.076 11c.6 0 1.086.45 1.075 1 0 .55-.474 1-1.075 1C9.486 13 9 12.55 9 12s.475-1 1.076-1zm3.848 0c.601 0 1.076.45 1.076 1s-.475 1-1.076 1c-.59 0-1.075-.45-1.075-1s.474-1 1.075-1zm4.967-9C20.054 2 21 2.966 21 4.163V23l-2.211-1.995-1.245-1.176-1.317-1.25.546 1.943H5.109C3.946 20.522 3 19.556 3 18.359V4.163C3 2.966 3.946 2 5.109 2H18.89zm-3.97 13.713c2.273-.073 3.148-1.596 3.148-1.596 0-3.381-1.482-6.122-1.482-6.122-1.48-1.133-2.89-1.102-2.89-1.102l-.144.168c1.749.546 2.561 1.334 2.561 1.334a8.263 8.263 0 0 0-3.096-1.008 8.527 8.527 0 0 0-2.077.02c-.062 0-.114.011-.175.021-.36.032-1.235.168-2.335.662-.38.178-.607.305-.607.305s.854-.83 2.705-1.376l-.103-.126s-1.409-.031-2.89 1.103c0 0-1.481 2.74-1.481 6.121 0 0 .864 1.522 3.137 1.596 0 0 .38-.472.69-.871-1.307-.4-1.8-1.24-1.8-1.24s.102.074.287.179c.01.01.02.021.041.031.031.022.062.032.093.053.257.147.514.262.75.357.422.168.926.336 1.513.452a7.06 7.06 0 0 0 2.664.01 6.666 6.666 0 0 0 1.491-.451c.36-.137.761-.337 1.183-.62 0 0-.514.861-1.862 1.25.309.399.68.85.68.85z"
fill="rgba(255,255,255,1)" />
</svg>
<span class="ml-3"> Join us on Discord</span>
</a>
</div>
</div>
</div>
<div class=" order-1 lg:max-w-lg lg:w-full md:w-1/2 w-5/6 ">
<lottie-player src="build/lottie/hero.json" background="transparent" speed="1" loop autoplay>
</lottie-player>
</div>
</div>
</section>
<!-- HERO SECTION ENDS-->
<!-- Anouncements -->
<div class="container mx-auto my-1 flex flex-col px-5 py-24 justify-center items-center">
<div class="flex flex-col text-center w-full mb-8">
<h1 class="sm:text-4xl text-3xl font-black title-font mb-10 text-pink-400">Announcements and Notes
</h1>
<div class="h-full w-full p-6 rounded-lg border-2 border-gray-700 flex flex-col relative overflow-hidden">
<ul class="list-disc hover:list-disc">
<p class="text-white">To be eligible for fresher's track, all the members of team should be from first year of Degree/ All school students are also eligible for hackathon</p>
<hr style="background-color: #374151; height: 1px; border: 0; " />
<p class="text-white">Opting for fresher's track is a choice, instead of compulsion so if your team wish to participate in main track you can, we'll roll out forms for this choice during hackathon</p>
<hr style="background-color: #374151; height: 1px; border: 0;" />
<p class="text-white">Folks participating in fresher's track can start their project before hackathon period</p>
<hr style="background-color: #374151; height: 1px; border: 0;" />
<p class="text-white">You can use any open source library/module/framework to build your hack</p>
<hr style="background-color: #374151; height: 1px; border: 0;" />
<p class="text-white">You can build a hack out of any Idea, we will not provide any Idea, There are no restrictions on Ideas</p>
<hr style="background-color: #374151; height: 1px; border: 0;" />
</ul>
</div>
</div>
</div>
<!-- ABOUT SECTION STARTS-->
<section class="text-gray-400 bg-gray-900 font-body about" id="about">
<div class="container mx-auto flex px-5 py-24 md:flex-row flex-col items-center">
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6 mb-10 md:mb-0">
<img src="build/images/about.svg" alt="about">
</div>
<div class="lg:flex-grow md:w-1/2 lg:pl-24 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center">
<h1 class="title-font sm:text-5xl text-3xl mb-4 font-black text-white">About HackMoL3.0</h1>
<p class="mb-8 leading-relaxed">
HackMol3.0 is a community - focused 36 Hours Long Virtual Hackathon organized by <span class='text-pink-400'> <strong> DSC NIT Jalandhar</strong></span>, designed especially for the needs of the community itself. Whether you are a
beginner or expert ,here is a perfect chance to show your skills and witness a competitive yet inclusive developer community around it.<br> <br> In light of the Covid-19 outbreak, your safety and well being are our primary concern.
Hence all the activities Related to HackMol3.0 like workshops,talks will be hosted Virtually.
<br> <br> The Hackathon is purely based on <span class="font-bold text-pink-400">Open
Innovation</span>, teams can openly pick up any tracks, themes and problem statement.
</p>
</div>
</div>
</div>
</section>
<!-- ABOUT SECTION ENDS-->
<!-- RULES SECTION STARTS-->
<section class="text-gray-400 font-body bg-gray-900" id="rules">
<div class="container px-5 py-12 mx-auto">
<div class="flex flex-wrap w-full mb-10 flex-col items-center text-center">
<h1 class="title-font sm:text-5xl text-3xl mb-4 font-black text-white">Rules</h1>
</div>
<div class="flex flex-wrap -m-4">
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
1
</div>
<p class="leading-relaxed text-base">Each team must contain between 1-5 members.<b>Individual
Participants are also allowed</b> </p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
2
</div>
<p class="leading-relaxed text-base"> The Project must be build entirely during the Duration of the Hackathon </p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
3
</div>
<p class="leading-relaxed text-base">Each participant must adhere to our
<a href="https://devfolio.co/code-of-conduct" target="_blank" class="underline text-pink-400"> Code of Conduct.
</a>
</p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
4
</div>
<p class="leading-relaxed text-base">Hackers can work on any technical domain and idea of their choice. </p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
5
</div>
<p class="leading-relaxed text-base mb-6"> For precise details head to here to our
<a href="https://hackmol3.devfolio.co/" target="_blank" class="underline text-pink-400">
Devfolio Page. </a>
</p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
6
</div>
<p class="leading-relaxed text-base mb-6">Hackathon and Events are Open to and free for Student Developers.
</p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
7
</div>
<p class="leading-relaxed text-base ">All the submissions will be reviewed by the organizing committee & fixed top submissions will qualify for review by a panel of judges. Finalist teams may be called for special presentation with the Judges.
</p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
8
</div>
<p class="leading-relaxed text-base mb-12"> Organizers Reserves the final right of decision in any case and Rules Regulations can be changed at any point of time.
</p>
</div>
</div>
<div class="xl:w-1/3 md:w-1/2 p-4">
<div class="border border-gray-700 border-opacity-75 p-6 rounded-lg">
<div class="w-10 h-10 inline-flex items-center justify-center rounded-full bg-gray-800 text-pink-400 mb-4">
9
</div>
<p class="leading-relaxed text-base mb-16 pb-2">Still have Doubts ? Head over and ask at our
<a href="https://discord.gg/4HyUncX4at" target="_blank" class="underline text-pink-400">
Discord Server. </a>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- RULES SECTION ENDS-->
<!-- EVENTS SECTION STARTS-->
<!-- <section class="text-gray-400 bg-gray-900 font-body events" id="events">
<div class="container px-5 py-24 mx-auto flex flex-wrap">
<div class="flex flex-col text-center w-full mb-16">
<h2 class="text-s text-pink-400 tracking-widest font-medium title-font mb-1">LEARN AND HACK</h2>
<h1 class="sm:text-5xl text-3xl font-black title-font text-white">Events</h1>
</div>
<div class="container px-5 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/android.png" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">Android Study Jams</h1>
<p class="leading-relaxed mb-3">Android Study Jams are community-organized study groups for people to learn how to build Android apps in the Kotlin programming language, using the curriculum provided by Google. There are two tracks available: -New to
Programming Track. -Prior Programming Experience Track
</p>
<div class="flex items-center flex-wrap ">
<a href="https://www.youtube.com/playlist?list=PL57sdU9zrO4nFa78aVt6NypqViiLAQNdN" target="_blank" class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0">Watch now -->
<!-- <svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg> -->
<!-- </a>
<a href="https://github.com/GDSC-NITJ/Android-Study-Jams-2021#readme" class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1" target="_blank">
View details
</a>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/IntroUI_UX.png" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">UI/UX Designing</h1>
<p class="leading-relaxed mb-3">A session focussed upon UI/UX Design and what are the career opportunities in this field and how can a beginner in this field start with. Product Design Techniques and Creative Projects display for introduction.
</p>
<div class="flex items-center flex-wrap">
<a href="https://youtu.be/C2jVU3U8Kog" class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0" target="_blank">Watch now -->
<!-- <svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>08 Jan 2022
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/blockchain.jpg" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">Blockchain</h1>
<p class="leading-relaxed mb-3">A wonderful session that plans to uncover the world of DAPPs and the decentralised world from a finer perspective.
</p>
<div class="flex items-center flex-wrap ">
<a class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0">Coming Soon!
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg> -->
<!-- </a>
<a href="https://hackmol3.tech/design/" class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1" target="_blank"> -->
<!-- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>09 Jan 2022 -->
<!-- View details
</a>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/WebdevBootcamp.png" alt="blog">
<div class="p-6 flex flex-col h-3/5">
<h1 class="title-font text-lg font-medium text-white mb-3">Web Development Workshop</h1>
<p class="leading-relaxed mb-3">A series of Workshops covering HTML , CSS and Javascript concepts along with a project building phase and a competition aligned
</p>
<div class="flex items-center flex-wrap ">
<a href="https://www.youtube.com/watch?v=fDnEoBOS3Mc" class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0" target="_blank">Watch now -->
<!-- <svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg> -->
<!-- </a>
<a href="https://github.com/GDSC-NITJ/web-bootcamp" class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1" target="_blank"> -->
<!-- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg> 15-22 Jan 2022 -->
<!-- View details
</a>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/ExploreML.png" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">Explore ML</h1>
<p class="leading-relaxed mb-3">An intro to ML Session which will make them aware about ML and its career prospects as well as several real-time applications along with the algorithms running behind the same. It will be a one session long event with people
comprising of beginners in ML.
</p>
<div class="flex items-center flex-wrap ">
<a href="https://gdsc.community.dev/e/m46yub/" class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0">Register now!
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg> 29 Jan 2022
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/cloud.jpg" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">Cloud Technology</h1>
<p class="leading-relaxed mb-3">An intro to Cloud Session which will make them aware about Cloud and its career prospects as well as several real-time applications along with the various services in field of cloud. It will be a one session long event
with people comprising of beginners in Cloud.
</p>
<div class="flex items-center flex-wrap "> -->
<!-- <a class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0">Coming Soon! -->
<!-- <svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg> -->
<!-- </a>
<span class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>30 Jan 2022
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/iot.png" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">Internet Of Things</h1>
<p class="leading-relaxed mb-3">An intro to Internet of things which will make them aware about IOT and its career prospects as well as several real-time applications along with the various services in field of IOT It will be a two session long event
with people comprising of beginners in IOT.
</p>
<div class="flex items-center flex-wrap ">
<a class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0">Coming Soon! -->
<!-- <svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg> -->
<!-- </a>
<span class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>5-6 Feb 2022
</span>
</div>
</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="h-full border-2 border-gray-800 rounded-lg overflow-hidden">
<img class="lg:h-48 md:h-36 w-full object-cover object-center" src="build/images/DSA_webinar.png" alt="blog">
<div class="p-6">
<h1 class="title-font text-lg font-medium text-white mb-3">DSA Webinar</h1>
<p class="leading-relaxed mb-3">This webinar introduces to DSA , its importance and give you the right path to master it.
</p>
<div class="flex items-center flex-wrap "> -->
<!-- <a class="text-pink-400 inline-flex items-center md:mb-2 lg:mb-0">Coming Soon! -->
<!-- <svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg> --->
<!-- </a>
<span class="text-white mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none pr-3 py-1">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="w-4 h-4 mr-2" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2}
d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg> 12 Feb 2022
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- TRACKS SECTION ENDS-->
<!-- SCHEDULE SECTION STARTS-->
<section class="text-gray-400 bg-gray-900 font-body schedule" id="schedule">
<div class="container px-5 py-24 mx-auto flex flex-wrap flex-col">
<div class="flex flex-col text-center w-full mb-8">
<h1 class="sm:text-5xl text-3xl font-black title-font mb-4 text-white">Hackathon Schedule
</h1>
<!-- <h1 class="sm:text-4xl text-3xl font-black title-font mb-4 text-pink-400">To be declared soon!
</h1> -->
</div>
<div class="flex flex-wrap" id="tabs-id">
<div class="w-full">
<ul class="flex mb-8 list-none flex-wrap pt-3 pb-4 flex-row">
<li class="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a class="cursor-pointer text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal text-white bg-pink-600 " onclick="changeActiveTab(event,'day-1')">
Day 1 (25th)
</a>
</li>
<li class="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a class="cursor-pointer text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal text-gray-400 bg-gray-800" onclick="changeActiveTab(event,'day-2')">
Day 2 (26th)
</a>
</li>
<li class="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a class=" cursor-pointer text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal text-gray-400 bg-gray-800" onclick="changeActiveTab(event,'day-3')">
Day 3 (27th)
</a>
</li>
<li class="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a class=" cursor-pointer text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal text-gray-400 bg-gray-800" onclick="changeActiveTab(event,'day-4')">
Day 4 (28th)
</a>
</li>
</ul>
<div class="relative flex flex-col min-w-0 break-words w-full mb-6 rounded">
<div class="px-4 py-5 flex-auto">
<div class="tab-content tab-space">
<!-- DAY 1 CONTENT GOES HERE -->
<div class="block" id="day-1">
<div class="flex relative pt-10 pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
1</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">17:00 - 19:00</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Introduction to Hackathon and Everything!.
</h2>
<p class="leading-relaxed">All about what a hackathon is, tips for effective teamwork, how to use Discord, basically everything!.</p>
</div>
</div>
</div>
<div class="flex relative pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
2</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">19:00 - </p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Team Formations and Ideations Start</h2>
<p class="leading-relaxed">Lone Wolfs with similar Skillset can come together and form teams, Brainstrom ideas for their project and come up with unique solutions for a problem.</p>
</div>
</div>
</div>
</div>
<!-- DAY 1 CONTENT ENDS HERE -->
<!-- DAY 2 CONTENT GOES HERE -->
<div class="hidden" id="day-2">
<div class="flex relative pt-10 pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
1</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">10:00 AM</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl"> Ideations Phase Ends
</h2>
<p class="leading-relaxed">Idea Submission in the form of PPT</p>
</div>
</div>
</div>
<div class="flex relative pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
2</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">12:00 PM</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Ideations Result Declaration
</h2>
<p class="leading-relaxed">Project ideas will be evaluated and the teams with relevent ideas will move forward in the hackathon.</p>
</div>
</div>
</div>
<div class="flex relative pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
3</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">12:00 - 23:59 PM</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Prototyping Phase Begins
</h2>
<p class="leading-relaxed">Start writing code and designing your prototypes. This is the time to bring your ideas to life.</p>
</div>
</div>
</div>
</div>
<!-- DAY 2 CONTENT ENDS HERE -->
<!-- DAY 3 CONTENT GOES HERE -->
<div class="hidden" id="day-3">
<div class="flex relative pb-10 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
2</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">00:00 - 23:59 </p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Evaluation</h2>
<p class="leading-relaxed"> Mentors will be evaluating teams based on their prototypes and the ideas they have presented. Team Leader/Representative should be present throughout the evaluation phase!
</p>
</div>
</div>
</div>
<div class="flex relative pb-10 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
1</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">12:00 - 14:00</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Fun Events
</h2>
<p class="leading-relaxed">Casual Hangouts ,Gaming and much more.</p>
</div>
</div>
</div>
<div class="flex relative pb-10 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
2</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">23:59</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Devfolio Submissions Ends</h2>
<p class="leading-relaxed"> Final Deadlines for the Submissions on the Devfolio
</p>
</div>
</div>
</div>
</div>
<!-- DAY 3 CONTENT ENDS HERE -->
<div class="hidden" id="day-4">
<div class="flex relative pt-10 pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
1</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">12:00 - 14:00</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Mentors' Judging
</h2>
<p class="leading-relaxed">
Mentors will go through your prototypes and select projects for final evalation by our judges.
</p>
</div>
</div>
</div>
<div class="flex relative pt-10 pb-20 sm:items-center md:w-2/3 mx-auto">
<div class="h-full w-6 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-800 pointer-events-none"></div>
</div>
<div class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-pink-500 text-white relative title-font font-medium text-sm">
2</div>
<div class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row">
<div class="flex-shrink-0 w-24 h-24 text-pink-400 inline-flex items-center justify-center">
<p class="leading-relaxed">18:00 - 20:00</p>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-white mb-1 text-xl">Final Evaluation & Closing Ceremony
</h2>
<p class="leading-relaxed">
Final Evaluation of project prototypes and presentations will be conducted by our Judges.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SCHEDULE SECTION ENDS-->
<!-- PRIZES SECTION STARTS -->
<section class="text-gray-400 bg-gray-900 font-body sponsors" id="prizes">
<div class="container mx-auto flex flex-col px-5 py-24 justify-center items-center">
<div class="flex flex-col text-center w-full mb-8">
<h1 class="sm:text-5xl text-3xl font-black title-font mb-4 text-white">Prizes<sup class=" text-lg ">*</sup>
</h1>
<h1 class="sm:text-4xl text-3xl font-black title-font mb-4 text-pink-400">Main Tracks
</h1>
</div>
<!-- Main track prizes -->
<div class="flex flex-wrap -m-4">
<!-- 1ST PRIZE -->
<div class="p-4 xl:w-1/3 md:w-1/2 w-full">
<div class="h-full p-6 rounded-lg border-2 border-gray-700 flex flex-col relative overflow-hidden">
<h1 class="text-5xl text-white pb-4 mb-4 border-b border-gray-800 leading-none">1st</h1>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>7500 INR Cash Prize
</p>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Goodies Box (6000 INR of worth)
</p>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Geeks for Geeks 1200/- INR Coupon on all courses
</p>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Echo -ar Free premium tier services
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Online Mock Interviews from Interview Buddy
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Lifetime upgrades of Taskade Unlimited
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>1 Free Year of 1Password Families
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>3 months of Draftbit Pro
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Sashido Credits
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>30 Days Free Repit Credits
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>30 Days Free Trial for Craft Brain Platform
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>20% discount code on Rosenfield site + books
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Leading Learners Expansion Packs (valued at $100USD each)
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Coding interview prep course by Interview Cake
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>$25 worth of Wolfram | One access for free
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>90-day extended trial for Balsamiq Cloud
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>$25 Coupon for Art of Problem Solving Online Classes
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Coding Minutes course
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Free access to all Nucleus courses(Live+ Recorded) on Learnandbuild.in
</p>
<p class="flex items-center text-gray-400 mb-6">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Internship opportunities
</p>
</div>
</div>
<!-- 2ND PRIZE -->
<div class="p-4 xl:w-1/3 md:w-1/2 w-full">
<div class="h-full p-6 rounded-lg border-2 border-gray-700 flex flex-col relative overflow-hidden">
<h1 class="text-5xl text-white leading-none flex items-center pb-4 mb-4 border-b border-gray-800">
2nd
</h1>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>5000 INR Cash Prize
</p>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Goodies Box (5000 INR of worth)
</p>
<p class="flex items-center text-gray-400 mb-2">
<span class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-800 text-gray-500 rounded-full flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2.5" class="w-3 h-3" viewBox="0 0 24 24">
<path d="M20 6L9 17l-5-5"></path>
</svg>
</span>Geeks for Geeks 800/- INR Coupons on all courses
</p>