-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1829 lines (1794 loc) · 77.9 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" />
<link rel="stylesheet" href="./style.css" />
<link
href="https://fonts.googleapis.com/css2?family=VT323&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="./assets/favicon_io/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/typeit@8.7.1/dist/index.umd.js"></script>
<title>Status Code 1 | IIIT Kalyani</title>
</head>
<!-- <a
id="mlh-trust-badge"
style="
display: block;
max-width: 100px;
min-width: 60px;
position: fixed;
top: 0;
width: 10%;
z-index: 10000;
"
class="right-[60px] md:right-[80px] xl:right-[50px]"
href="https://mlh.io/apac?utm_source=apac-hackathon&utm_medium=TrustBadge&utm_campaign=2024-season&utm_content=white"
target="_blank"
><img
src="https://s3.amazonaws.com/logged-assets/trust-badge/2024/mlh-trust-badge-2024-white.svg"
alt="Major League Hacking 2024 Hackathon Season"
style="width: 100%"
/>
</a> -->
<body class="bg-[#1E1E1E]">
<div id="preloader">
<img id="loadingImage" src="./assets/preloader.gif" />
<h1 id="loadingText">
Status Code 1 loading <span id="blinking"></span>
</h1>
</div>
<nav
class="py-5 bg-[#1E1E1E] fixed w-full xl:flex xl:items-center xl:justify-between z-50 xl:mx-16 mx-5"
>
<div class="flex justify-between items-center">
<div class="flex">
<!-- <a href="#">
<img class="w-32 md:w-36" src="assets/iupgz4ve 1.png" alt="" />
</a>
<div
class="ml-2 mr-2 md:ml-5 md:mr-5 h-14 md:h-16 w-0.5 bg-[#2E2E2E]"
></div> -->
<a href="https://iiitkalyani.ac.in/" target="_blank">
<img
class="h-14 md:h-16"
src="assets/iiit_kalyani_logo.png"
alt="IIIT Kalyani Logo"
/>
</a>
</div>
<span id="check" class="cursor-pointer xl:hidden block">
<ion-icon
class="text-3xl mr-10 md:text-5xl"
name="menu"
onclick="Menu(this)"
></ion-icon>
</span>
</div>
<ul
class="xl:flex xl:mr-40 xl:items-center lkmvi z-[49] xl:static absolute w-full left-0 xl:w-auto xl:py-0 py-4 xl:pl-0 pl-7 opacity-0 xl:opacity-100 top-[-400px] transition-all ease-in duration-500 bg-[#1E1E1E] text-[#BABABA]"
>
<li class="mx-4 my-6 xl:my-0 hover:text-white">
<a href="#schedule" class="text-3xl 2xl:text-4xl">SCHEDULE</a>
</li>
<li class="mx-4 my-6 xl:my-0 hover:text-white">
<a href="#tracks" class="text-3xl 2xl:text-4xl">TRACKS</a>
</li>
<!-- <li class="mx-4 my-6 xl:my-0 hover:text-white">
<a href="#prize" class="text-3xl 2xl:text-4xl">PRIZE</a>
</li> -->
<li class="mx-4 my-6 xl:my-0 hover:text-white">
<a href="#sponsers" class="text-3xl 2xl:text-4xl">SPONSORS</a>
</li>
<!-- <li class="mx-4 my-6 xl:my-0 hover:text-white">
<a href="./challenges/index.html" class="text-3xl 2xl:text-4xl"
>CHALLENGES</a
>
</li> -->
<li class="mx-4 my-6 xl:my-0 hover:text-white">
<a href="#faq" class="text-3xl 2xl:text-4xl">FAQs</a>
</li>
<li class="xl:ml-5">
<div
class="apply-button"
data-hackathon-slug="statuscode-1"
data-button-theme="dark"
style="height: 44px; width: 312px"
></div>
</li>
</ul>
</nav>
<div
class="absolute top-[35%] left-20 w-18 hidden py-8 px-4 rounded-md xl:flex flex-col items-center justify-center xl:justify-evenly gap-7 md:gap-10"
>
<a
href="https://www.instagram.com/status._code_1/"
target="_blank"
rel="noopener noreferrer"
class="bg-[#1313130]"
>
<img
class="sociallogos insta_logo brightness-0 invert-[1] hover:filter-none w-[48px]"
src="./assets/images/insta_logo.png"
alt="insta_logo"
/>
</a>
<a
href="https://twitter.com/Status_Code_"
target="_blank"
rel="noopener noreferrer"
>
<img
class="twitter_logo sociallogos brightness-0 invert-[1] hover:filter-none w-[48px]"
src="./assets/images/twitter_logo.png"
alt="twitter_logo"
/>
</a>
<a
href="https://www.linkedin.com/company/statuscode0/"
target="_blank"
rel="noopener noreferrer"
class="w-[40px] mb-12"
>
<img
class="sociallogos linkedin_logo absolute w-[44px] peer z-10 brightness-0 invert-[1] hover:filter-none"
src="./assets/images/linkedin_logo.png"
alt="linkedin_logo"
/>
<div
class="w-[40%] h-[30px] absolute top-[57%] left-6 peer-hover:bg-white"
></div>
</a>
<a
href="https://discord.gg/UHwPBzy7UF"
target="_blank"
rel="noopener noreferrer"
>
<img
class="sociallogos discord_logo brightness-0 invert-[1] hover:filter-none w-[48px]"
src="./assets/images/discord_logo.png"
alt="discord_logo"
/>
</a>
</div>
<div
class="hero flex justify-between items-center md:gap-[5rem] lg:gap-[10rem] 2xl:gap-[13rem] mascot-break:gap-[25rem] mx-5 xl:mx-16 py-32 xl:px-48 2xl:px-56"
>
<div class="hero-text">
<h1
class="text-[#9E9E9E] m-0 tracking-wider text-3xl md:text-4xl xl:text-5xl"
>
$ man <span class="text-white z-10" id="element"> StatusCode</span
><span class="text-red-600">1</span>
</h1>
<p
class="text-[#D9D9D9] lg:text-base xl:text-2xl mt-10 w-full md:w-[100%] xl:w-[120%] 2xl:w-[150%] mascot-break:w-[180%] 3xl:w-[150%]"
>
Unleash your creativity and join Status Code 1, the ultimate
36-hour hackathon extravaganza! Compete across diverse categories,
showcasing your skills, ingenuity, and collaborative spirit alongside
like-minded individuals. Discover the perfect platform to challenge
yourself, acquire new skills, and craft awe-inspiring products with
the potential to make a significant impact. Don't miss this
unparalleled opportunity to showcase your talent and be part of the
tech revolution. Welcome to Status Code 1 - where innovation knows no
boundaries.
</p>
<div
class="container my-12 flex flex-col items-center justify-center 2xl:w-[170%]"
style="color: #f21212"
>
<h1 class="md:text-4xl text-3xl text-white" id="headline">
Hacking starts in!
</h1>
<div class="countdown text-4xl md:text-4xl lg:text-5xl xl:text-6xl">
<p class="md:ml-10 ml-0" id="demo"></p>
<ul
class="flex gap-3 justify-evenly text-2xl md:text-3xl lg:text-5xl xl:text-6xl text-[#D9D9D9]"
style="padding-bottom: 0px"
>
<li><span id=""></span>days</li>
<li><span id=""></span>:</li>
<li><span class="" id=""></span> hrs</li>
<li><span id=""></span>:</li>
<li><span id=""></span> min</li>
<li><span id=""></span>:</li>
<li><span id=""></span>sec</li>
</ul>
</div>
</div>
</div>
<img
class="md:h-[30vh] xl:h-[45vh] 2xl:h-[60vh] hidden md:block"
style="margin: 0 0em 10em 0"
src="./assets/mascot.gif"
alt=""
/>
</div>
<!-- SCHEDULE -->
<div
id="schedule"
class="mt-10 mx-5 xl:mx-16 xl:px-48 2xl:px-56"
style="padding-bottom: 60px"
>
<h1
class="text-[#9E9E9E] m-0 text-3xl md:text-4xl xl:text-5xl"
style="padding-bottom: 60px"
>
$ <span id="heading-schedule"></span>
</h1>
<div class="timeline mx-30 flex justify-center">
<button class="prev mr-10 opacity-50 hover:opacity-100 min-w-[30px]">
<img src="./assets/left_key.svg" alt="" />
</button>
<div class="contents mx-30 flex mx-auto">
<div
class="timeline-wrapper max-w-[990px] flex overflow-x-auto no-scrollbar"
>
<div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#FF6D75] text-3xl md:text-4xl xl:text-4xl">
May 5
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
12:00 AM
</h3>
<img src="./assets/red_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Registration
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Begins
</h3>
</div>
<div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#FFC977] text-3xl md:text-4xl xl:text-4xl">
Aug 17
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
12:00 AM
</h3>
<img src="./assets/orange_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Registration
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Closes
</h3>
</div>
<div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#DA77D6] text-3xl md:text-4xl xl:text-4xl">
Aug 24
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
11:00 AM
</h3>
<img src="./assets/pink_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Hacking
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Starts
</h3>
</div>
<!-- <div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#BC81FF] text-3xl md:text-4xl xl:text-4xl">
Aug 12
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
12:30 PM
</h3>
<img src="./assets/purple_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
API
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Workshop
</h3>
</div> -->
<!-- <div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#78BEFF] text-3xl md:text-4xl xl:text-4xl">
Aug 12
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
04:00 PM
</h3>
<img src="./assets/blue_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Auth0
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Workshop
</h3>
</div> -->
<div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#FF6D75] text-3xl md:text-4xl xl:text-4xl">
Aug 24
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
11:00 PM
</h3>
<img src="./assets/red_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Mid
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Evaluation
</h3>
</div>
<div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#FFC977] text-3xl md:text-4xl xl:text-4xl">
Aug 25
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
04:00 PM
</h3>
<img src="./assets/orange_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Final
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Evaluation
</h3>
</div>
<div
class="flex flex-col justify-center items-center min-w-[330px] m-1"
>
<h1 class="text-[#DA77D6] text-3xl md:text-4xl xl:text-4xl">
Aug 25
</h1>
<h3 class="text-[#00FFDF] text-1xl md:text-2xl xl:text-2xl">
05:15 PM
</h3>
<img src="./assets/pink_add.svg" alt="" />
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Closing
</h3>
<h3 class="text-[#FFFFFF] text-2xl md:text-3xl xl:text-3xl">
Ceremony
</h3>
</div>
</div>
</div>
<button class="next ml-10 opacity-50 hover:opacity-100 min-w-[30px]">
<img src="./assets/right_key.svg" alt="" />
</button>
</div>
</div>
<!-- TRACKS -->
<div
id="tracks"
class="mt-10 mx-5 xl:mx-16 xl:px-48 2xl:px-56"
style="padding-bottom: 60px"
>
<h1 class="text-[#9E9E9E] m-0 text-3xl md:text-4xl xl:text-5xl">
$ <span id="heading-tracks"></span>
</h1>
<div
class="mx-0 my-10 bg-[#555555] pt-10 pb-2 px-2 hidden lg:block xl:hidden tracks-break:block"
>
<ul
class="flex list-none flex-col flex-nowrap pl-0 md:flex-row overflow-hidden"
role="tablist"
data-te-nav-ref
>
<li role="presentation" class="flex-auto text-center">
<a
href="#pills-home01"
class="flex items-center bg-[#9E9E9E] px-5 pb-3.5 pt-4 text-3xl h-full xl:w-full mr-0 2xl:w-full font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-home-tab01"
data-te-toggle="pill"
data-te-target="#pills-home01"
data-te-nav-active
role="tab"
aria-controls="pills-home01"
aria-selected="true"
>Medical</a
>
</li>
<li role="profile" class="flex-auto text-center">
<a
href="#pills-profile01"
class="flex items-center bg-[#9E9E9E] px-5 xl:px-2 2xl:px-5 pb-3.5 pt-4 text-3xl ml-0 xl:w-full 2xl:w-full font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-profile-tab01"
data-te-toggle="pill"
data-te-target="#pills-profile01"
role="tab"
aria-controls="pills-profile01"
aria-selected="false"
>Wildlife and Environment</a
>
</li>
<!-- <li role="contact" class="flex-auto text-center">
<a
href="#pills-contact01"
class="block bg-[#9E9E9E] px-5 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-contact01"
role="tab"
aria-controls="pills-contact01"
aria-selected="false"
>Wildlife</a
>
</li> -->
<!-- <li role="contact" class="flex-auto text-center">
<a
href="#pills-04"
class="block bg-[#9E9E9E] px-5 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-04"
role="tab"
aria-controls="pills-04"
aria-selected="false"
>Gender Inclusivity</a
>
</li> -->
<li role="contact" class="flex-auto text-center">
<a
href="#pills-05"
class="flex items-center justify-center bg-[#9E9E9E] px-5 xl:px-2 2xl:px-5 pb-3.5 pt-4 text-3xl h-full font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-05"
role="tab"
aria-controls="pills-05"
aria-selected="false"
>Education</a
>
</li>
<!-- <li role="contact" class="flex-auto text-center">
<a
href="#pills-06"
class="flex items-center justify-center bg-[#9E9E9E] px-5 xl:px-2 2xl:px-5 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] h-full data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-06"
role="tab"
aria-controls="pills-06"
aria-selected="false"
>Auth0</a
>
</li> -->
<li role="contact" class="flex-auto text-center">
<a
href="#pills-07"
class="flex items-center h-full bg-[#9E9E9E] px-5 xl:px-2 2xl:px-5 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-07"
role="tab"
aria-controls="pills-07"
aria-selected="false"
>Web 3.0</a
>
</li>
<!-- <li role="contact" class="flex-auto text-center">
<a
href="#pills-08"
class="block bg-[#9E9E9E] px-5 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-08"
role="tab"
aria-controls="pills-08"
aria-selected="false"
>Security</a
>
</li> -->
<li role="contact" class="flex-auto text-center">
<a
href="#pills-09"
class="bg-[#9E9E9E] h-full flex items-center justify-center px-3 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-09"
role="tab"
aria-controls="pills-09"
aria-selected="false"
>Open Innovation</a
>
</li>
<li role="contact" class="flex-auto text-center">
<a
href="#pills-10"
class="bg-[#9E9E9E] h-full flex items-center justify-center px-3 pb-3.5 pt-4 text-3xl font-medium uppercase leading-tight text-[#1E1E1E] data-[te-nav-active]:!bg-[#1E1E1E] data-[te-nav-active]:text-[#FFFFFF] md:mr-0"
id="pills-contact-tab01"
data-te-toggle="pill"
data-te-target="#pills-10"
role="tab"
aria-controls="pills-10"
aria-selected="false"
>Hardware</a
>
</li>
</ul>
<!--Pills content-->
<div class="mb-2">
<div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-home01"
role="tabpanel"
aria-labelledby="pills-home-tab01"
data-te-tab-active
>
In this track, participants work on developing software solutions
related to healthcare and medicine. They might build applications
that help patients manage their health, or tools that assist
healthcare providers in diagnosing and treating patients.
</div>
<div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-profile01"
role="tabpanel"
aria-labelledby="pills-profile-tab01"
>
This track focuses on building software solutions that promote
sustainability and protect the environment. Participants might
create applications that help reduce waste, conserve energy, monitor
the health of ecosystems, or streamline recycling processes or
applications that would help in tracking wildlife populations,
monitor habitats, prevent illegal wildlife trade, or even provide
early warning systems for natural calamities such as forest fires or
floods that can significantly impact wildlife and their habitats.
</div>
<!-- <div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-contact01"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
The wildlife track encourages participants to build software
solutions that support wildlife conservation and the preservation of
biodiversity. Participants might develop applications that help
track wildlife populations, monitor habitats, prevent illegal
wildlife trade, or even provide early warning systems for natural
calamities such as forest fires or floods that can significantly
impact wildlife and their habitats. The aim is to leverage
technology to mitigate the effects of such natural disasters and
protect wildlife from harm.
</div> -->
<!-- <div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-04"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
The Gender Inclusivity Track at Status Code 1 focuses on building
software solutions that promote gender equality and inclusiveness,
addressing various issues affecting women and girls. Participants
are encouraged to create applications that combat gender-based
violence, improve access to healthcare, and promote equal
opportunities for women in the workplace. Furthermore, the track
encourages participants to build solutions that support the LGBTQIA+
community and non-binary individuals. This includes creating
applications that address discrimination, promote equal rights, and
provide support for their mental health and overall well-being. The
goal is to leverage technology to create a more equitable and
inclusive society, free from all forms of discrimination and bias.
</div> -->
<div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-05"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
The education track encourages participants to build software
solutions that enhance the quality of education. Participants might
develop applications that provide personalized learning experiences,
improve access to education for disadvantaged communities, or help
teachers and students collaborate more effectively.
</div>
<!-- <div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-06"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
Participate in the Auth0 Special Track at Status Code 1 and create a
product using Auth0 for a chance to win $20 Amazon Gift Cards for
all members of your team.
</div> -->
<div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-07"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
As part of this track, participants may explore decentralized
finance (DeFi) applications, enabling seamless peer-to-peer
financial transactions, decentralized marketplaces, and novel
governance models. One can design secure and transparent systems
that empower users with greater control over their digital assets.
</div>
<!-- <div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-08"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
This track focuses on building software solutions that improve
cybersecurity. Participants might develop applications that detect
and prevent cyber threats, or tools that help organizations protect
their data and networks.
</div> -->
<div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-09"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
The Open Innovation track offers limitless scope for creativity,
encouraging participants to explore diverse ideas and solve
real-world problems outside conventional boundaries. Let your
imagination run wild and propose exciting solutions that can reform
the world.
</div>
<div
class="hidden bg-[#1E1E1E] w-full text-[#D9D9D9] opacity-100 transition-opacity duration-150 ease-linear data-[te-tab-active]:block px-10 py-10 text-2xl"
id="pills-10"
role="tabpanel"
aria-labelledby="pills-contact-tab01"
>
The Hardware track emphasizes hands-on implementation and encourages
teams to create detailed and innovative prototypes that showcase the
functionality and feasibility of their ideas. Participants are
encouraged to explore diverse challenges and develop hardware-based
solutions that address these issues effectively.
</div>
</div>
</div>
<!-- Accordian mobile-->
<div
class="bg-[#555555] my-10 px-3 py-10 lg:hidden xl:block tracks-break:hidden"
>
<div id="accordionExample">
<div class="bg-[#9E9E9E]">
<h2 class="mb-0" id="headingOne">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseOne"
aria-expanded="false"
aria-controls="collapseOne"
>
MEDICAL
</button>
</h2>
<div
id="collapseOne"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingOne"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
In this track, participants work on developing software
solutions related to healthcare and medicine. They might build
applications that help patients manage their health, or tools
that assist healthcare providers in diagnosing and treating
patients.
</div>
</div>
</div>
<div class="mt-2">
<h2 class="mb-0" id="headingTwo">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
WILDLIFE AND ENVIRONMENT
</button>
</h2>
<div
id="collapseTwo"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingTwo"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
This track focuses on building software solutions that promote
sustainability and protect the environment. Participants might
create applications that help reduce waste, conserve energy,
monitor the health of ecosystems, or streamline recycling
processes or applications that would help in tracking wildlife
populations, monitor habitats, prevent illegal wildlife trade,
or even provide early warning systems for natural calamities
such as forest fires or floods that can significantly impact
wildlife and their habitats.
</div>
</div>
</div>
<!-- <div class="mt-2">
<h2 class="accordion-header mb-0" id="headingThree">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-left text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
WILDLIFE
</button>
</h2>
<div
id="collapseThree"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingThree"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
The wildlife track encourages participants to build software
solutions that support wildlife conservation and the
preservation of biodiversity. Participants might develop
applications that help track wildlife populations, monitor
habitats, prevent illegal wildlife trade, or even provide early
warning systems for natural calamities such as forest fires or
floods that can significantly impact wildlife and their
habitats. The aim is to leverage technology to mitigate the
effects of such natural disasters and protect wildlife from
harm.
</div>
</div>
</div> -->
<div class="mt-2">
<h2 class="accordion-header mb-0" id="headingFive">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseFive"
aria-expanded="false"
aria-controls="collapseFive"
>
EDUCATION
</button>
</h2>
<div
id="collapseFive"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingFive"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
The education track encourages participants to build software
solutions that enhance the quality of education. Participants
might develop applications that provide personalized learning
experiences, improve access to education for disadvantaged
communities, or help teachers and students collaborate more
effectively.
</div>
</div>
<!-- <div class="mt-2">
<h2 class="accordion-header mb-0" id="headingFour">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseFour"
aria-expanded="false"
aria-controls="collapseFour"
>
AUTH0
</button>
</h2>
<div
id="collapseFour"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingFour"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
Participate in the Auth0 Special Track at Status Code 1 and
create a product using Auth0 for a chance to win $20 Amazon
Gift Cards for all members of your team.
</div>
</div>
</div> -->
</div>
<!-- <div class="mt-2">
<h2 class="accordion-header mb-0" id="headingSix">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-left text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseSix"
aria-expanded="false"
aria-controls="collapseSix"
>
EMPLOYMENT
</button>
</h2>
<div
id="collapseSix"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingSix"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
This track focuses on building software solutions that address
employment challenges. Participants might create applications
that help job seekers find employment, or tools that assist
employers in finding the right candidates for their open
positions.
</div>
</div>
</div> -->
<div class="mt-2">
<h2 class="accordion-header mb-0" id="headingSeven">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseSeven"
aria-expanded="false"
aria-controls="collapseSeven"
>
WEB 3.0
</button>
</h2>
<div
id="collapseSeven"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingSeven"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
As part of this track, participants may explore decentralized
finance (DeFi) applications, enabling seamless peer-to-peer
financial transactions, decentralized marketplaces, and novel
governance models. One can design secure and transparent systems
that empower users with greater control over their digital
assets.
</div>
</div>
</div>
<!-- <div class="mt-2">
<h2 class="accordion-header mb-0" id="headingEight">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-left text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseEight"
aria-expanded="false"
aria-controls="collapseEight"
>
SECURITY
</button>
</h2>
<div
id="collapseEight"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingEight"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
This track focuses on building software solutions that improve
cybersecurity. Participants might develop applications that
detect and prevent cyber threats, or tools that help
organizations protect their data and networks.
</div>
</div>
</div> -->
<div class="mt-2">
<h2 class="accordion-header mb-0" id="headingNine">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseNine"
aria-expanded="false"
aria-controls="collapseNine"
>
OPEN INNOVATION
</button>
</h2>
<div
id="collapseNine"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingNine"
data-te-parent="#accordionExample"
>
<div
class="px-10 py-4 text-[#D9D9D9] bg-[#1E1E1E] text-center text-lg"
>
The Open Innovation track offers limitless scope for creativity,
encouraging participants to explore diverse ideas and solve
real-world problems outside conventional boundaries. Let your
imagination run wild and propose exciting solutions that can
reform the world.
</div>
</div>
</div>
<div class="mt-2">
<h2 class="accordion-header mb-0" id="headingTen">
<button
class="group relative flex w-full items-center justify-center rounded-none border-0 bg-[#9E9E9E] px-5 py-4 text-center text-black transition [overflow-anchor:none] hover:z-[2] focus:z-[3] focus:outline-none [&:not([data-te-collapse-collapsed])]:bg-[#1E1E1E] [&:not([data-te-collapse-collapsed])]:text-white text-3xl md:text-4xl"
type="button"
data-te-collapse-init
data-te-collapse-collapsed
data-te-target="#collapseTen"
aria-expanded="false"
aria-controls="collapseTen"
>
HARDWARE
</button>
</h2>
<div
id="collapseTen"
class="!visible hidden"
data-te-collapse-item
aria-labelledby="headingTen"
data-te-parent="#accordionExample"