-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
967 lines (930 loc) · 58.3 KB
/
index.html
File metadata and controls
967 lines (930 loc) · 58.3 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>HACK X — 24-Hour Hackathon by CodeCell | KJ Somaiya | April 11-12, 2026</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description"
content="HACK X by CodeCell — A 24-hour hackathon at KJ Somaiya College of Engineering, Mumbai. April 11-12, 2026. Prize pool of ₹3 Lakhs+. 200+ participants. Tracks: AI/ML, Web3. Register now!" />
<meta name="keywords"
content="HACK X, hackathon, CodeCell, KJ Somaiya, KJSCE, hackathon Mumbai, 24 hour hackathon, hackathon 2026, coding competition, AI ML hackathon, Web3 hackathon, student hackathon, tech event Mumbai, programming contest, hack x codecell, somaiya hackathon, hackathon registration, coding marathon, developer event, innovation challenge" />
<meta name="author" content="CodeCell — KJ Somaiya College of Engineering" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="theme-color" content="#4fd1d9" />
<link rel="canonical" href="https://hack.kjsse.com/" />
<link rel="icon" href="favicon.ico" sizes="48x48" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32.png" />
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon-192.png" />
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<!-- Open Graph -->
<meta property="og:title" content="HACK X — 24-Hour Hackathon by CodeCell | April 11-12, 2026" />
<meta property="og:description"
content="A 24-hour hackathon at KJ Somaiya College of Engineering, Mumbai. ₹3 Lakhs+ prize pool. 200+ participants. AI/ML & Web3 tracks. Register now!" />
<meta property="og:image" content="https://hack.kjsse.com/open-graph.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="HACK X — 24-Hour Hackathon by CodeCell at KJ Somaiya" />
<meta property="og:url" content="https://hack.kjsse.com/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="HACK X // CodeCell" />
<meta property="og:locale" content="en_IN" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="HACK X — 24-Hour Hackathon by CodeCell | April 2026" />
<meta name="twitter:description"
content="24-hour hackathon at KJ Somaiya, Mumbai. ₹3L+ prizes, 200+ participants. AI/ML & Web3 tracks." />
<meta name="twitter:image" content="https://hack.kjsse.com/open-graph.png" />
<meta name="twitter:image:alt" content="HACK X — 24-Hour Hackathon by CodeCell" />
<!-- Telegram -->
<meta name="telegram:channel" content="@hackx" />
<!-- Geo & Language -->
<meta name="geo.region" content="IN-MH" />
<meta name="geo.placename" content="Mumbai" />
<meta name="geo.position" content="19.0728;72.8990" />
<meta name="ICBM" content="19.0728, 72.8990" />
<meta http-equiv="content-language" content="en-IN" />
<!-- Structured Data (Event + Organization) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "HACK X — 24-Hour Hackathon by CodeCell",
"description": "A 24-hour hackathon at KJ Somaiya College of Engineering, Mumbai. Prize pool of ₹3 Lakhs+. Tracks: AI/ML (Nexus) & Web3 (Spectra).",
"startDate": "2026-04-11T11:00:00+05:30",
"endDate": "2026-04-12T11:00:00+05:30",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "KJ Somaiya College of Engineering",
"address": {
"@type": "PostalAddress",
"streetAddress": "Vidyavihar",
"addressLocality": "Mumbai",
"addressRegion": "Maharashtra",
"postalCode": "400077",
"addressCountry": "IN"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 19.0728,
"longitude": 72.8990
}
},
"image": "https://hack.kjsse.com/open-graph.png",
"organizer": {
"@type": "Organization",
"name": "CodeCell — KJ Somaiya College of Engineering",
"url": "https://hack.kjsse.com/",
"email": "codecell.engg@somaiya.edu",
"logo": {
"@type": "ImageObject",
"url": "https://hack.kjsse.com/images/HackX-logo-600-248.png",
"width": 600,
"height": 248
}
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "INR",
"availability": "https://schema.org/InStock",
"url": "https://hack.kjsse.com/"
},
"maximumAttendeeCapacity": 200,
"url": "https://hack.kjsse.com/"
}
</script>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<!-- Preconnect to external origins for faster resource loading -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin />
<link rel="preconnect" href="https://unpkg.com" crossorigin />
<link rel="preconnect" href="https://raw.githubusercontent.com" crossorigin />
<link rel="dns-prefetch" href="https://apply.devfolio.co" />
<!-- Preload critical font -->
<link rel="preload"
href="https://raw.githubusercontent.com/vercel/geist-pixel-font/main/fonts/webfonts/GeistPixel-Square.woff2"
as="font" type="font/woff2" crossorigin />
<style>
@font-face {
font-family: "Geist Pixel";
src: url("https://raw.githubusercontent.com/vercel/geist-pixel-font/main/fonts/webfonts/GeistPixel-Square.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
}
/* ── SPRITE LOADER ── */
#boot-loader {
position: fixed;
inset: 0;
background: #0a1628;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 24px;
z-index: 99999;
transition: opacity 0.4s ease-out;
}
#boot-loader.hide {
opacity: 0;
pointer-events: none;
}
#boot-loader .bl-sprite {
width: 35vmin;
height: 35vmin;
overflow: hidden;
}
#boot-loader .bl-sprite canvas {
width: 100%;
height: 100%;
image-rendering: crisp-edges;
}
#boot-loader .bl-text {
font-family: "Courier New", monospace;
font-size: 11px;
color: #4fd1d9;
letter-spacing: 0.3em;
animation: bl-pulse 1.4s ease-in-out infinite;
}
@keyframes bl-pulse {
0%,
100% {
opacity: 0.3;
}
50% {
opacity: 0.8;
}
}
</style>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="manifest" href="manifest.json" />
<script>
history.scrollRestoration = "manual";
window.scrollTo(0, 0);
</script>
<!-- p5 moved to body bottom to unblock first paint -->
</head>
<body>
<div id="boot-loader">
<div class="bl-sprite"><canvas id="bl-canvas" width="540" height="540"></canvas></div>
<div class="bl-text">INITIALIZING HACK X</div>
<script>
(function () {
var img = new Image();
img.src = "images/blue_spritesheet.webp";
var cvs = document.getElementById("bl-canvas");
var ctx = cvs.getContext("2d");
var cols = 10, rows = 9, fw = 540, fh = 540, total = 89, frame = 0;
var interval = 1000 / 30;
function tick() {
ctx.clearRect(0, 0, fw, fh);
var col = frame % cols;
var row = Math.floor(frame / cols);
ctx.drawImage(img, col * fw, row * fh, fw, fh, 0, 0, fw, fh);
frame = (frame + 1) % total;
if (!cvs.closest(".hide")) setTimeout(tick, interval);
}
img.onload = tick;
})();
</script>
</div>
<div class="vignette-overlay"></div>
<!-- Fixed elements -->
<div id="announcement-bar"></div>
<!-- SECTION 1: HERO — The Game -->
<section id="hero-section" class="section">
<div id="game-container"></div>
<div id="game-bottom-bar"></div>
<!-- <div id="scroll-hint">
<span>▼ SCROLL TO DECRYPT MORE ▼</span>
</div> -->
</section>
<!-- SECTION 2: ABOUT -->
<section id="about-section" class="section">
<canvas id="about-canvas"></canvas>
<div class="section-content about-layout">
<div class="about-left">
<h1 class="glitch-text" data-text="HACK X">HACK X</h1>
<p class="about-tagline">A 24-HOUR HACKATHON BY CODECELL</p>
<p class="about-desc">
The boldest builders, designers, and dreamers converge
to create something unprecedented. No sleep. No limits.
Just code.
</p>
<!-- <div class="about-tags">
<span>AI / ML</span>
<span>WEB3</span>
<span>OPEN TO ALL</span>
<span>TEAM OF 2-4</span>
</div> -->
<div class="apply-button" data-hackathon-slug="hack-x" data-button-theme="dark"
style="height: 44px; width: 312px"></div>
</div>
<div class="about-right">
<model-viewer class="about-model" src="3dmodel/3D%20Asset%20Final.glb" alt="Hack X 3D asset"
camera-controls auto-rotate rotation-per-second="20deg" shadow-intensity="1.0" exposure="0.5"
environment-image="legacy" disable-zoom loading="lazy" reveal="auto"></model-viewer>
</div>
</div>
</section>
<!-- SECTION 3: TRACKS (hidden for now) -->
<section id="tracks-section" class="section" style="display: none">
<div class="section-content">
<h1 class="glitch-text" data-text="// TRACKS">// TRACKS</h1>
<div class="track-block" id="track-nexus">
<canvas id="nexus-canvas"></canvas>
<div class="track-content">
<div class="track-number">01</div>
<h2>NEXUS</h2>
<div class="track-subtitle">
ARTIFICIAL INTELLIGENCE & ML
</div>
<p>
Build intelligent systems that push the boundaries
of what machines can learn, predict, and create.
From LLMs to computer vision — if it thinks, it
belongs here.
</p>
<div class="track-tags">
<span>LLMs</span><span>COMPUTER VISION</span><span>AGENTS</span><span>ML OPS</span>
</div>
</div>
</div>
<div class="track-block" id="track-spectra">
<canvas id="spectra-canvas"></canvas>
<div class="track-content">
<div class="track-number">02</div>
<h2>SPECTRA</h2>
<div class="track-subtitle">
WEB3 & DECENTRALIZED SYSTEMS
</div>
<p>
Architect the decentralized future. Smart contracts,
DeFi protocols, DAOs, and on-chain experiences —
build what banks and corporations can't.
</p>
<div class="track-tags">
<span>SMART CONTRACTS</span><span>DEFI</span><span>DAOS</span><span>ON-CHAIN</span>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION 4: PRIZES -->
<section id="prizes-section" class="section">
<canvas id="prizes-canvas"></canvas>
<div class="section-content">
<h1 class="glitch-text" data-text="// PRIZES">// PRIZES</h1>
<div class="prizes-layout">
<div class="prizes-pool">
<div class="prizes-pool-label">TOTAL PRIZE POOL</div>
<div class="prizes-pool-amount prize-amount" data-target="300000" data-prefix="₹">
₹0
</div>
<div class="prizes-pool-sub">
+ GOODIES & SWAG FOR ALL
</div>
</div>
<div class="prizes-tracks">
<div class="prizes-track">
<div class="prizes-track-label">TRACK 1</div>
<div class="prizes-track-prizes">
<div class="prize-place">
<div class="prize-place-rank">1ST</div>
<div class="prize-place-amount prize-amount" data-target="100000" data-prefix="₹">
₹0
</div>
</div>
<div class="prize-place">
<div class="prize-place-rank">2ND</div>
<div class="prize-place-amount prize-amount" data-target="50000" data-prefix="₹">
₹0
</div>
</div>
</div>
</div>
<div class="prizes-divider"></div>
<div class="prizes-track">
<div class="prizes-track-label">TRACK 2</div>
<div class="prizes-track-prizes">
<div class="prize-place">
<div class="prize-place-rank">1ST</div>
<div class="prize-place-amount prize-amount" data-target="100000" data-prefix="₹">
₹0
</div>
</div>
<div class="prize-place">
<div class="prize-place-rank">2ND</div>
<div class="prize-place-amount prize-amount" data-target="50000" data-prefix="₹">
₹0
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION 5: WHAT YOU GET -->
<section id="perks-section" class="section">
<canvas id="perks-bg-canvas"></canvas>
<div class="section-content">
<h1 class="glitch-text" data-text="// WHAT YOU GET">// WHAT YOU GET</h1>
<div class="perks-bento">
<div class="bento-cell bento-hero">
<div class="bento-val">₹3L+</div>
<div class="bento-label">IN PRIZES</div>
<div class="bento-sub">ACROSS BOTH TRACKS</div>
</div>
<div class="bento-cell bento-center">
<div class="bento-val">24H</div>
<div class="bento-label">FOOD & CAFFEINE</div>
</div>
<div class="bento-cell bento-center">
<div class="bento-val">1:1</div>
<div class="bento-label">MENTORSHIP</div>
</div>
<div class="bento-cell centered-text-flex bento-network-row">
<div class="bento-val">200+</div>
<div class="bento-label">NETWORK</div>
</div>
<div class="bento-cell bento-wide centered-text-flex">
<div class="bento-val">SWAGS + CERTS + VIBES</div>
<div class="bento-label">EVERYTHING IS ON US</div>
</div>
</div>
</section>
<!-- SECTION 7: SPONSORS -->
<section id="sponsors-section" class="section">
<div class="section-content">
<h1 class="glitch-text" data-text="// SPONSORS">//SPONSORS</h1>
<p class="section-desc">Hack X is made possible by organizations that believe in the next generation of
builders.</p>
<div class="sponsors-tiers">
<div class="sponsor-tier">
<div class="tier-label">TITLE SPONSOR</div>
<div class="sponsor-logos title-tier">
<div class="sponsor-slot"> <img class="gajshield-zoom"
src="sponsor/currentsponsors/gajshieldsq.png" alt="Gajshield" width="180" height="48"
loading="lazy" decoding="async" /></div>
</div>
</div>
<div class="sponsor-tier">
<!-- <div class="tier-label">GOLD SPONSORS</div>
<div class="sponsor-logos gold-tier">
<div class="sponsor-slot"> <img class="incred-zoom" src="sponsor/currentsponsors/IncredLight.svg" alt="IncredMail AI" width="90" height="30" loading="lazy" decoding="async" /></div>
<div class="sponsor-slot"> <img src="sponsor/currentsponsors/EthIndia.png" alt="EthIndia" width="90" height="30" loading="lazy" decoding="async" /></div>
</div>-->
</div>
<div class="sponsor-tier">
<div class="tier-label">COMMUNITY PARTNERS</div>
<div class="sponsor-logos community-tier">
<div class="sponsor-slot small"> <img src="sponsor/currentsponsors/devfolio.png"
alt="DEVFOLIO LOGO" width="90" height="30" loading="lazy" decoding="async" /></div>
<div class="sponsor-slot small"> <img src="sponsor/currentsponsors/EthIndia.png" alt="EthIndia"
width="90" height="30" loading="lazy" decoding="async" /></div>
<div class="sponsor-slot small"> <img src="sponsor/currentsponsors/xyz.png" alt="xyz" width="90"
height="30" loading="lazy" decoding="async" /></div>
</div>
</div>
</div>
<div class="sponsors-cta">
WANT TO SPONSOR? <a href="mailto:codecell.engg@somaiya.edu">CONTACT US →</a>
</div>
<div class="past-sponsors">
<div class="past-sponsors-label">PAST SPONSORS & PARTNERS</div>
<div class="past-sponsors-marquee-wrap">
<div class="past-sponsors-marquee past-sponsors-images">
<img src="sponsor/previoussponsors/Atos.png" alt="Atos" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/Axurewhite.png" alt="Axurewhite" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/BeReal.jpeg" alt="BeReal" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Gatsby.png" alt="Gatsby" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Inspirus_Logo.webp" alt="Inspirus" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/OReilly_logo_white_rgb.png" alt="OReilly" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Postman.png" alt="Postman" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Protoio.png" alt="Protoio" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Replit.png" alt="Replit" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Rosenfeld.jpg" alt="Rosenfeld" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Solana.png" alt="Solana" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Stickertimes.png" alt="Stickertimes" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/TruScholar.png" alt="TruScholar" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/alan.png" alt="alan" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/american_tourister.webp" alt="american_tourister" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/arcana.svg" alt="arcana" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/axure.svg" alt="axure" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/balsamiq.png" alt="balsamiq" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/bappa-gold.png" alt="bappa-gold" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/beeceptor.svg" alt="beeceptor" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/belgian-waffles.png" alt="belgian-waffles" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/cake_logo_white_on_blue.png" alt="cake" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/celo.png" alt="celo" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/certopus_light.svg" alt="certopus" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/cybrancee.png" alt="cybrancee" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/digitalocean.png" alt="DigitalOcean" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/echo3D.webp" alt="echo3D" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/falconx.svg" alt="FalconX" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/filecoin.png" alt="Filecoin" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/frappe_new-logo.png" alt="Frappe" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/fuelerLight.png" alt="Fueler" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/gfg_logo.png" alt="GeeksForGeeks" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/hack-club.png" alt="Hack Club" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/heiphen.png" alt="Heiphen" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/interviewCake.png" alt="Interview Cake" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/interviewbuddy.png" alt="InterviewBuddy" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/kaamyuptextlogo.png" alt="Kaamyup" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/konfhub.png" alt="KonfHub" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/kotak-logo.png" alt="Kotak" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/learningwhiletraveling.png" alt="Learning While Traveling"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/mabtheo.webp" alt="Mabtheo" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/newton.png" alt="Newton" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/noticebard.svg" alt="NoticeBard" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/oishi.jpg" alt="Oishi" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/polygon.png" alt="Polygon" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/portis.png" alt="Portis" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/proto.jpg" alt="Proto" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/quicknode.png" alt="QuickNode" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/redbull.svg" alt="Red Bull" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/riidl.png" alt="RIIDL" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/riidllogo1.jpg" alt="RIIDL" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/rirrhys.png" alt="Rirrhys" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/rorito.jpeg" alt="Rorito" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/sbi.png" alt="SBI" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/spectral-logo.png" alt="Spectral" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/sticker-mule-logo-white.png" alt="Sticker Mule" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/sybgen.png" alt="Sybgen" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/symbl.png" alt="Symbl" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/taskade.jpg" alt="Taskade" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/tezos.png" alt="Tezos" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/theeducationtree.jpeg" alt="The Education Tree" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/unstop.png" alt="Unstop" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/vfsl.webp" alt="VFSL" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/vodex.png" alt="Vodex" width="90" height="36" loading="lazy"
decoding="async" />
<img src="sponsor/previoussponsors/waffleLab.jpeg" alt="Waffle Lab" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/wolfram.png" alt="Wolfram" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/zeeve.png" alt="Zeeve" width="90" height="36" loading="lazy"
decoding="async" />
<!-- duplicate for seamless loop -->
<img src="sponsor/previoussponsors/Atos.png" alt="Atos" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Axurewhite.png" alt="Axurewhite" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/BeReal.jpeg" alt="BeReal" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Gatsby.png" alt="Gatsby" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Inspirus_Logo.webp" alt="Inspirus" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/OReilly_logo_white_rgb.png" alt="OReilly" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Postman.png" alt="Postman" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Protoio.png" alt="Protoio" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Replit.png" alt="Replit" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Rosenfeld.jpg" alt="Rosenfeld" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Solana.png" alt="Solana" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/Stickertimes.png" alt="Stickertimes" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/TruScholar.png" alt="TruScholar" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/alan.png" alt="alan" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/american_tourister.webp" alt="american_tourister"
aria-hidden="true" width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/arcana.svg" alt="arcana" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/axure.svg" alt="axure" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/balsamiq.png" alt="balsamiq" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/bappa-gold.png" alt="bappa-gold" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/beeceptor.svg" alt="beeceptor" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/belgian-waffles.png" alt="belgian-waffles" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/cake_logo_white_on_blue.png" alt="cake" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/celo.png" alt="celo" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/certopus_light.svg" alt="certopus" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/cybrancee.png" alt="cybrancee" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/digitalocean.png" alt="DigitalOcean" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/echo3D.webp" alt="echo3D" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/falconx.svg" alt="FalconX" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/filecoin.png" alt="Filecoin" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/frappe_new-logo.png" alt="Frappe" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/fuelerLight.png" alt="Fueler" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/gfg_logo.png" alt="GeeksForGeeks" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/hack-club.png" alt="Hack Club" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/heiphen.png" alt="Heiphen" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/interviewCake.png" alt="Interview Cake" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/interviewbuddy.png" alt="InterviewBuddy" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/kaamyuptextlogo.png" alt="Kaamyup" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/konfhub.png" alt="KonfHub" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/kotak-logo.png" alt="Kotak" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/learningwhiletraveling.png" alt="Learning While Traveling"
aria-hidden="true" width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/mabtheo.webp" alt="Mabtheo" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/newton.png" alt="Newton" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/noticebard.svg" alt="NoticeBard" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/oishi.jpg" alt="Oishi" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/polygon.png" alt="Polygon" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/portis.png" alt="Portis" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/proto.jpg" alt="Proto" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/quicknode.png" alt="QuickNode" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/redbull.svg" alt="Red Bull" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/riidl.png" alt="RIIDL" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/riidllogo1.jpg" alt="RIIDL" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/rirrhys.png" alt="Rirrhys" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/rorito.jpeg" alt="Rorito" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/sbi.png" alt="SBI" aria-hidden="true" width="90" height="36"
loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/spectral-logo.png" alt="Spectral" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/sticker-mule-logo-white.png" alt="Sticker Mule"
aria-hidden="true" width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/sybgen.png" alt="Sybgen" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/symbl.png" alt="Symbl" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/taskade.jpg" alt="Taskade" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/tezos.png" alt="Tezos" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/theeducationtree.jpeg" alt="The Education Tree"
aria-hidden="true" width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/unstop.png" alt="Unstop" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/vfsl.webp" alt="VFSL" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/vodex.png" alt="Vodex" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/waffleLab.jpeg" alt="Waffle Lab" aria-hidden="true"
width="90" height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/wolfram.png" alt="Wolfram" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
<img src="sponsor/previoussponsors/zeeve.png" alt="Zeeve" aria-hidden="true" width="90"
height="36" loading="lazy" decoding="async" />
</div>
</div>
</div>
</div>
</section>
<!-- SECTION 8: TIMELINE -->
<section id="timeline-section" class="section">
<div class="section-content timeline-content">
<h1 class="glitch-text" data-text="// TIMELINE">// TIMELINE</h1>
<div class="timeline-hub" data-aos>
<div class="timeline-panels">
<article class="timeline-panel timeline-panel-datebox">
<div class="timeline-panel-label">DATE + DAY</div>
<div class="timeline-panel-date" id="timeline-panel-date">APR 11-12</div>
<div class="timeline-panel-day" id="timeline-panel-day">SATURDAY - SUNDAY</div>
</article>
<article class="timeline-panel timeline-panel-detailbox">
<div class="timeline-panel-label">EVENT DETAILS</div>
<div class="timeline-panel-title" id="timeline-panel-title">24 HOURS OF HACKING</div>
<div class="timeline-panel-body" id="timeline-panel-body">
11:00 AM — Hacking Period Starts
01:00 PM — Lunch
04:30 PM — Evening Snacks
06:00 PM — Mentoring Round 1
08:30 PM — Dinner
12:00 AM — Midnight Snacks
01:00 AM — Mentoring Round 2
08:00 AM — Breakfast
11:00 AM — Hacking Period Ends
</div>
</article>
</div>
<div class="timeline-thread-wrap" id="timeline-thread-wrap">
<svg class="timeline-thread-svg" viewBox="0 0 100 100" preserveAspectRatio="none">
<path id="timeline-thread-path"></path>
</svg>
<div class="timeline-node-track" id="timeline-node-track">
<button type="button" class="timeline-node" data-date="MAR 22" data-day="SATURDAY"
data-title="REGISTRATION OPENS"
data-detail="Participant applications go live. Build your team and lock your slot before the rush.">
<span class="timeline-node-dot" aria-hidden="true"></span>
<span class="timeline-node-label">MAR 22</span>
</button>
<button type="button" class="timeline-node" data-date="APR 05" data-day="WEDNESDAY"
data-title="REGISTRATION CLOSES"
data-detail="Final registration closes. Make sure your team, profile, and idea draft are submitted.">
<span class="timeline-node-dot" aria-hidden="true"></span>
<span class="timeline-node-label">APR 05</span>
</button>
<button type="button" class="timeline-node" data-date="APR 11" data-day="SATURDAY"
data-title="OPENING CEREMONY"
data-detail="08:30 AM — Reporting 09:30 AM — Inauguration Ceremony in KJSSE Auditorium">
<span class="timeline-node-dot" aria-hidden="true"></span>
<span class="timeline-node-label">APR 11</span>
</button>
<button type="button" class="timeline-node active" data-date="APR 11-12"
data-day="SATURDAY - SUNDAY" data-title="24 HOURS OF HACKING"
data-detail="11:00 AM — Hacking Period Starts 01:00 PM — Lunch 04:30 PM — Evening Snacks 06:00 PM — Mentoring Round 1 08:30 PM — Dinner 12:00 AM — Midnight Snacks 01:00 AM — Mentoring Round 2 08:00 AM — Breakfast 11:00 AM — Hacking Period Ends">
<span class="timeline-node-dot" aria-hidden="true"></span>
<span class="timeline-node-label">APR 11-12</span>
</button>
<button type="button" class="timeline-node" data-date="APR 12" data-day="SUNDAY"
data-title="DEMOS & JUDGING"
data-detail="11:15 AM — Evaluation Round 1 01:00 PM — Lunch 03:30 PM — Final Evaluation Round">
<span class="timeline-node-dot" aria-hidden="true"></span>
<span class="timeline-node-label">APR 12</span>
</button>
<button type="button" class="timeline-node" data-date="APR 12" data-day="SUNDAY"
data-title="CLOSING CEREMONY & PRIZES"
data-detail="04:30 PM — Evening Snacks 05:30 PM — Prize Distribution & Closing Remarks">
<span class="timeline-node-dot" aria-hidden="true"></span>
<span class="timeline-node-label">APR 12</span>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION 6: FAQ -->
<section id="faq-section" class="section">
<div class="section-content">
<h1 class="glitch-text" data-text="// FAQ">// FAQ</h1>
<div class="faq-list">
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>What happens at a Hackathon?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">Participants will spend 24 hours working in teams of one to four people to
build or code projects they are excited about. During the event, there will be mentorship rounds
to help and mini-events to guide the participants along the way. Participants only need to bring
their ideas and their laptops, as we will provide everything they need to make their ideas come
to life.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>Who can participate?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">Anyone with an interest in technology, coding, or innovation can
participate! Whether you're a beginner or an experienced developer, there's a place for you at
our hackathon.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>Do I need to know how to code?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">While having some coding experience is helpful, it's not mandatory. We
welcome participants with diverse skill sets, including designers, project managers, and those
who are just starting their coding journey.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>What should I bring?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">All participants are required to carry their own laptops and college
identity cards.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>What do people normally make?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">Hacks can fall into categories such as Web Development, Blockchain, Android,
iOS, AI/ML, AR/VR, and Game Development. Participants can combine any of these categories since
this is an open innovation hackathon.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>Where will the hackathon be held?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">The hackathon will be held at <a
href="https://maps.app.goo.gl/EX4KawzmC1qf9HG98" target="_blank"
rel="noopener noreferrer">K.J. Somaiya College of Engineering, Vidyavihar, Mumbai.</a></div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>What if I have never been to a hackathon before?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">Don't worry, we're open to students of all skill levels. We offer talks, and
mentors to help you with your project. Hackathons are an excellent opportunity to learn new
skills in a short amount of time. Just come with an eagerness to learn and enthusiasm to meet
lots of awesome people.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>What is the required team size?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">Teams of 3 - 4 members are allowed.</div>
</div>
<div class="faq-item">
<div class="faq-question" role="button" tabindex="0" aria-expanded="false">
<span>What is the Code of Conduct?</span>
<span class="faq-toggle"></span>
</div>
<div class="faq-answer">The appropriate code of conduct is linked <a
href="https://drive.google.com/file/d/1EDjvC7DpBDr_j6EsBHBwd-XgZ6KS4_Hi/view"
target="_blank" rel="noopener noreferrer">here</a>.</div>
</div>
</div>
</div>
</section>
<!-- SECTION 6: THE TEAM -->
<section id="team-section" class="section">
<div class="section-content">
<h1 class="glitch-text" data-text="// THE TEAM">// THE TEAM</h1>
<p class="section-desc">
36 people behind the scenes making Hack X happen. CodeCell's
finest.
</p>
<div class="team-counter">
<span class="team-number">36</span>
<span class="team-label">ORGANIZERS</span>
</div>
<div class="team-row-label">
DEPARTMENT HEADS // SEVERED FLOOR
</div>
<div class="team-marquee-wrap">
<div class="team-marquee" id="team-row-heads"></div>
</div>
<div class="team-row-label">MACRODATA REFINEMENT // O&D</div>
<div class="team-marquee-wrap reverse">
<div class="team-marquee" id="team-row-ty"></div>
</div>
<div class="team-row-label">OPTICS & DESIGN // WELLNESS</div>
<div class="team-marquee-wrap">
<div class="team-marquee" id="team-row-sy"></div>
</div>
<div class="team-row-label">NEW INNIES // PROBATIONARY</div>
<div class="team-marquee-wrap reverse">
<div class="team-marquee" id="team-row-fy"></div>
</div>
<div class="team-note">THE HUMANS BEHIND THE TERMINAL</div>
</div>
</section>
<!-- SECTION 7: FOOTER -->
<section id="footer-section">
<canvas id="footer-canvas"></canvas>
<div class="footer-content">
<div class="footer-brand">
<div class="footer-logo"
onclick="setTimeout(() => window.open('https\:\/\/kjssecodecell.com/', '_blank'), 1900)">CODECELL
</div>
<div class="footer-tagline">
CHANGING THE WORLD, ONE BIT AT A TIME
</div>
</div>
<div class="footer-links">
<a href="#about-section">ABOUT</a>
<a href="#prizes-section">PRIZES</a>
<a href="#perks-section">PERKS</a>
<a href="#team-section">TEAM</a>
<a href="#sponsors-section">SPONSORS</a>
<a href="#timeline-section">TIMELINE</a>
<a href="#faq-section">FAQ</a>
</div>
<div class="footer-social">
<span>
<a class="footer-social-link" href="https://x.com/kjsce_codecell" target="_blank"
rel="noopener noreferrer">TWITTER</a>
</span> ·
<span>
<a class="footer-social-link" href="https://discord.gg/7J3FaBWFV7" target="_blank"
rel="noopener noreferrer">DISCORD</a>
</span> ·
<span>
<a class="footer-social-link" href="https://github.com/kjsce-codecell" target="_blank"
rel="noopener noreferrer">GITHUB</a>
</span> ·
<span>
<a class="footer-social-link" href="https://www.instagram.com/kjsce_codecell/" target="_blank"
rel="noopener noreferrer">INSTAGRAM</a>
</span>
</div>
<div class="footer-copy">
© 2026 CODECELL. ALL RIGHTS RESERVED. THE DATA MUST FLOW.
</div>
</div>
</section>
<!-- p5 minified, then dependencies before sketch (which defines preload/setup/draw) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>
<script src="config.js"></script>
<script src="audio.js"></script>
<script src="osn.js"></script>
<script src="bin.js"></script>
<script src="data.js"></script>
<script src="utils.js"></script>
<script src="macrodata.js"></script>
<script src="sketch.js"></script>
<audio id="secretMusic" src="audio-assets/shakey-jake.mp3" preload="none"></audio>
<button id="stopMusicBtn">STOP MUSIC</button>
<script src="sections.js"></script>
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
<!-- p5 loader removed -->
</body>
</html>