-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
2803 lines (2683 loc) · 162 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" />
<title>Aurora - Hack The Spectrum</title>
<link rel="icon" type="image/png" sizes="64x64" href="./images/aurora/greengrad.png" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="Join Aurora Hackathon, an exciting event by Elixir Tech Community. Showcase your skills, tackle unique problems, and win prizes!" />
<meta name="keywords" content="Aurora, Hackathon, Elixir Tech Community, Coding Competition, Tech Event" />
<meta name="author" content="Elixir Tech Community" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://aurora.elixircommunity.in/" />
<meta property="og:title" content="Aurora Hackathon - Elixir Tech Community" />
<meta property="og:description"
content="Join Aurora Hackathon, an exciting event by Elixir Tech Community. Showcase your skills, tackle unique problems, and win prizes!" />
<meta property="og:image" content="https://aurora.elixircommunity.in/images/Banner.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://aurora.elixircommunity.in/" />
<meta property="twitter:title" content="Aurora Hackathon - Elixir Tech Community" />
<meta property="twitter:description"
content="Join Aurora Hackathon, an exciting event by Elixir Tech Community. Showcase your skills, tackle unique problems, and win prizes!" />
<meta property="twitter:image" content="https://aurora.elixircommunity.in/images/Banner.png" />
<link href="asset/stellar/./css/vendors/aos.css" rel="stylesheet" />
<link rel="stylesheet" href="asset/stellar/./css/vendors/swiper-bundle.min.css" />
<link href="asset/stellar/./style.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("a").on("click", function (event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$("html, body").animate(
{
scrollTop: $(hash).offset().top,
},
800,
function () {
window.location.hash = hash;
},
);
}
});
});
</script>
<body class="cp73f curfr cbwtk cqpzc cthh7">
<!-- Page wrapper -->
<div class="cs2x1 cq32i c8rkc co970">
<div class="cs2x1 cq32i c8rkc co970">
<!-- Site header -->
<header class="cl2cn c5r67 cytoa header">
<div class="cknuf chyag ck7tl cj5a0 navbar-container">
<div class="cs2x1 cr9dw2 cxwsr clfke c05f2 nav-elements">
<!-- Site branding -->
<div class="cgtgw cw4n2">
<!-- Logo -->
<a class="c5puz" href="#about" aria-label="Cruip">
<img src="./images/aurora/aurora-white.png" width="150" height="90" alt="logo" />
</a>
</div>
<!-- Desktop navigation -->
<nav class="cs2x1 cfck1 navbar">
<!-- Desktop sign in links -->
<ul class="cs2x1 cfck1 cj38p cxwsr coq9a nav-menu">
<li class="nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#about">About</a>
</li>
<!-- <li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#collabs">Collabs</a>
</li> -->
<li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#sponsors">Sponsors</a>
</li>
<li class="ce6vk nav-item"></li>
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#collabs">Collabs</a>
</li>
<li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#prizes">Prizes</a>
</li>
<li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#themes">Themes</a>
</li>
<!-- <li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#mentors">Mentors</a>
</li> -->
<li class="ce6vk nav-item"></li>
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#timeline">Timeline</a>
</li>
<li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#faq">FAQ</a>
</li>
<li class="ce6vk nav-item">
<a class="cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl nav-link" href="#contact">Contact</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</div>
</div>
<style>
.navbar-container {
background: rgba(33, 98, 107, 0.014);
margin: 0px;
max-width: 100%;
}
.nav-elements {
margin: 0px;
}
.hamburger {
display: none;
cursor: pointer;
}
.bar {
display: block;
width: 25px;
height: 3px;
margin: 5px auto;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
background-color: #cbd5e1;
}
.header {
position: fixed;
top: 0px;
width: 100%;
backdrop-filter: blur(50px);
}
@media (max-width: 828px) {
.navbar-container {
background: rgba(33, 98, 107, 0.527);
}
.hamburger {
display: block;
margin-left: 80%;
}
.hamburger.active .bar:nth-child(2) {
opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
.nav-menu {
position: fixed;
left: -100%;
top: 0px;
gap: 0;
background: radial-gradient(circle at 50% 50%, rgb(33, 98, 107), rgba(76, 0, 255, 0));
/* background-color: rgb(6, 114, 126); */
/* border-radius: 30px; */
flex-direction: column;
width: 100%;
height: 100%;
text-align: center;
transition: 0.3s;
backdrop-filter: blur(16px);
/* inset: 0; */
justify-content: center;
align-items: center;
z-index: -1;
display: none;
}
.nav-item {
margin: 10px 10px;
}
.nav-menu.active {
display: flex;
left: 0;
}
.nav-link:hover {
color: rgb(20, 219, 189);
}
.header {
position: fixed;
backdrop-filter: blur(0px);
}
.header.active {
backdrop-filter: blur(50px);
height: 100%;
}
}
</style>
<script>
const hamburger = document.querySelector(".hamburger");
const navMenu = document.querySelector(".nav-menu");
const header = document.querySelector(".header");
hamburger.addEventListener("click", () => {
hamburger.classList.toggle("active");
navMenu.classList.toggle("active");
header.classList.toggle("active");
});
document.querySelectorAll(".nav-link").forEach((n) =>
n.addEventListener("click", () => {
hamburger.classList.remove("active");
navMenu.classList.remove("active");
header.classList.toggle("active");
}),
);
</script>
</header>
<!-- Page content -->
<main class="cfck1">
<!-- Hero -->
<section id="about">
<div class="ca60c cknuf chyag ck7tl cj5a0">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq" aria-hidden="true">
<canvas data-particle-animation=""></canvas>
</div>
<!-- Illustration -->
<div class="c431g cl2cn c9pxh c0mvq cr2p6 co970 cpa88" aria-hidden="true">
<div class="cl2cn cl2el cddhp c0mvq cbixb">
<img src="./asset/stellar/images/glow-bottom-blue-lessbright.png" class="cxjf2" width="2146"
height="774" alt="Hero Illustration" />
</div>
</div>
<div class="csfv3 ccyse c9me8 cxnp8">
<!-- Hero content -->
<div class="cknuf cz30m c1xp8">
<div class="cil4g" data-aos="fade-down">
<div class="ca60c cwkz6 cc4v0 cqez1 cpt2o cimec">
<a class="clnk2 ca60c c8cvf cuxtl cngu6 cco4s cykc9 c2rol csomw cm39l cc4v0 cqez1 ch9g6 cuhzf c5dkl cxxlx"
href="https://www.elixircommunity.in/" target="_blank">
<span class="ca60c cwkz6 cxwsr">
Elixir Website <span class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span>
</span>
</a>
</div>
</div>
<h1 class="cgnl7 cmmug cr2fi chaw1 ch3zp cicf4 ckopp cjeaj" data-aos="fade-down">
Aurora : Hack The Spectrum
</h1>
<p class="cvj3n cd2du cuxtl" data-aos="fade-down" data-aos-delay="200">
Join us for Aurora, a dynamic hackathon designed to immerse students in the world of Web3
technologies. Experience a unique blend of creativity and cutting-edge tech, and help shape the
future of the decentralized web with the Elixir Tech community.
</p>
<div class="cknuf chnsh csz2t c0bgf c2mz6 c7xko cpdb4 c5cwt" data-aos="fade-down" data-aos-delay="400">
<div>
<a class="cmae3 cytoa cmmug c53mx ccarb cvpag culnm cco4s cykc9 c2rol cnen9 cxxlx devfolio"
href="https://aurora2024.devfolio.co/" target="_blank">
<img src="./images/DevfolioDark.png" width="85" alt="DEVFOLIO LOGO" /></a>
<!-- <span>
Devfolio <span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span> -->
</div>
<div>
<a class="cmae3 cytoa cp73f clbrg czs2g cco4s cykc9 c2rol cfn05 c5dkl"
href="https://discord.com/invite/YN9ZGjXdXK" target="_blank">
<span><i class="fa-brands fa-github" style="color: #ffffff"></i> Discord</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<style>
.devfolio {
font-weight: bold;
}
</style>
<!-- Clients -->
<section">
<div class="ca60c cknuf chyag ck7tl cj5a0">
<!-- Particles animation -->
<div class="cl2cn c9pxh cknuf chyag ck7tl cj5a0">
<div class="cl2cn c9pxh c0mvq" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="5"></canvas>
</div>
</div>
<div class="ctvyg cy0uw">
<div class="co970">
<div class="wrapper">
<p>
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
HACKATHON IS LIVE HACKATHON IS LIVE
</p>
</div>
<style>
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
.wrapper {
width: 100%;
}
.wrapper p {
width: 100%;
font-family: "Anton", sans-serif;
font-weight: 400;
font-style: normal;
letter-spacing: 3px;
font-size: 4rem;
white-space: nowrap;
animation: marquee 30s linear infinite;
}
@keyframes marquee {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-500%);
}
}
</style>
<!-- Carousel built with Swiper.js [https://swiperjs.com/] -->
<!-- * Initialized in src/js/main.js -->
<!-- * Custom styles in src/css/additional-styles/theme.scss -->
<!-- <div
class="clients-carousel swiper-container ca60c cm39l cc4v0 cqez1 c0h98 crvsw cfnmv cb98v ctgyu cysd2 cgxgf c45xe cv2ch c1o86 chum8 c9ygy">
<h3 class="ckomn cmmug cr2fi chaw1 ch3zp cicf4 c0xld cjeaj headingcollabs">
Collaborators</h3>
<div class="swiper-wrapper cyvt8 cxwsr cmehy">
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-01.svg" alt="collab1" width="110"
height="21">
</div>
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-02.svg" alt="collab2" width="70"
height="25">
</div>
<div class="swiper-slide czmgy">
<img class="cn53t" src="./asset/stellar/images/client-03.svg"
alt="Client 03" width="107" height="33">
</div>
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-04.svg" alt="collab4" width="85"
height="36">
</div>
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-05.svg" alt="collab5" width="86"
height="18">
</div>
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-06.svg" alt="collab6" width="78"
height="34">
</div>
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-07.svg" alt="collab7" width="83"
height="23">
</div>
<div class="swiper-slide czmgy">
<img src="./asset/stellar/images/client-08.svg" alt="collab8" width="98"
height="26">
</div>
<div class="swiper-slide czmgy">
<img class="cuwsu" src="./asset/stellar/images/client-09.svg" alt="collab9"
width="92" height="28">
</div>
</div>
</div> -->
</div>
</div>
</div>
</section>
<!-- Features -->
<section id="sponsors">
<div class="ca60c cknuf chyag ck7tl cj5a0">
<!-- Illustration -->
<div class="c431g cl2cn c9pxh c0mvq cr2p6 co970 cu7zb" aria-hidden="true">
<div class="cl2cn cddhp c2aec c0mvq cbixb">
<img src="./asset/stellar/images/glow-top-blue.png" class="cxjf2" width="1404" height="658"
alt="Features Illustration" />
</div>
</div>
<!-- Blurred shape -->
<div class="c431g cl2cn cddhp c2aec c0mvq cbixb curw3 cluw3 citek" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" width="434" height="427">
<defs>
<lineargradient id="bs3-a" x1="19.609%" x2="50%" y1="14.544%" y2="100%">
<stop offset="0%" stop-color="#1AB4B0"></stop>
<stop offset="100%" stop-color="#6366F1" stop-opacity="0"></stop>
</lineargradient>
</defs>
<path fill="url(#bs3-a)" fill-rule="evenodd" d="m410 0 461 369-284 58z"
transform="matrix(1 0 0 -1 -410 427)"></path>
</svg>
</div>
<div class="cknuf chyag ck7tl cj5a0">
<div class="cw8rx c3ebo cz74e c4w2r cpnha ctga0">
<!-- Section header -->
<div class="cknuf cz30m cz74e c1xp8 cpnha">
<h2 class="cr09c cmmug cr2fi chaw1 ch3zp cicf4 ckopp cjeaj">Elite Partners in Innovation</h2>
<p class="cd2du cfoch">
Devcon2024 is set to be a groundbreaking event, featuring top-notch speakers and hands-on
workshops. It offers a vibrant platform for networking and exploring the latest tech trends.
Attendees can look forward to insightful sessions that drive innovation and collaboration.
</p>
</div>
<div class="cknuf cz30m">
<div data-aos="fade-down">
<div class="cxxlx" data-highlighter="">
<div
class="ca60c co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 cahiq">
<a href="https://devcon.org/en/" target="_blank" rel="noopener noreferrer">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cucbd cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t c33km cxp9g"></div>
</div>
<img src="./images/aurora/devcon.png" width="768" height="400" alt="Feature 04" />
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials carousel -->
<section>
<div class="cknuf chyag ck7tl cj5a0">
<div class="csaom cksyi">
<!-- Section header -->
<!-- Gold Silver and Bronze Sponsors -->
<div class="cknuf cz30m cz74e c1xp8 cpnha">
<div>
<div class="cwkz6 cmmug cpb1t c6mtw cicf4 c0xld ciph8 cjeaj">
Supporters Driving the Future of Web3
</div>
</div>
<h2 class="cr09c cmmug cr2fi chaw1 ch3zp cicf4 ckopp cjeaj">MEET OUR VISIONARY SPONSORS</h2>
<p class="cd2du cfoch">Explore the organizations fueling innovation and making Aurora possible.</p>
</div>
<!-- Carousel built with Swiper.js [https://swiperjs.com/] -->
<!-- * Initialized in src/js/main.js -->
<!-- * Custom styles in src/css/additional-styles/theme.scss -->
<div
class="ca60c cc4v0 cqez1 c0xhb chxq1 ckrgn c80l1 cxbfo cy3ub cysd2 cgxgf cur8q cdlvo ct9mr ckqgz corv8 cgemu">
<div class="testimonials-carousel swiper-container cxxlx">
<div class="cn7ud flex-col w-full" data-highlighter="">
<!-- Carousel items -->
<div
class="my-10 swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<!-- Sponsor Details -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa relative h-60">
<div
class="c8p73 absolute bottom-[35%] -left-[4.2rem] bg-[#d4af37] -rotate-90 text-center font-semibold text-lg text-white py-2 w-[10em] h-fit rounded-b-xl rounded-t-[0rem]">
GOLD
</div>
<div class="cfck1">
<div class="c8p73 cfoch flex justify-center items-center h-full ml-2 md:ml-0 lg:-ml-4">
<div class="flex flex-col justify-center items-center text-center">
<img class="w-40 md:w-60" src="./images/ibw.svg" alt="India Blockchain Week 2024" />
<div class="font-semibold text-lg leading-tight">
India Blockchain <br />
Week 2024
</div>
</div>
</div>
</div>
<!-- <div class="ce3al border-t border-gray-800"></div> -->
</div>
</div>
</div>
<div
class="my-10 swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa relative h-60">
<div
class="c8p73 absolute rounded-b-xl rounded-t-[0rem] bottom-[35%] -left-[4.2rem] bg-[#abb5a0] -rotate-90 text-center font-semibold text-lg text-white py-2 w-[10em] h-fit">
SILVER
</div>
<div class="cfck1">
<!-- <div class="ceq85 cd2du cokyf text-center text-[1.8em]">Silver Sponsor</div> -->
<div
class="c8p73 cfoch flex justify-center items-center h-full flex-col md:flex-row gap-8 md:gap-20 mb-8">
<img class="w-48" src="./images/devfolio.svg" alt="DEVFOLIO LOGO" />
<img class="w-60" src="./images/QuillAudit.webp" />
</div>
</div>
<!-- <div class="ce3al border-t border-gray-800"></div> -->
</div>
</div>
</div>
<div
class="my-10 swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa relative h-60">
<div
class="c8p73 absolute rounded-b-xl rounded-t-[0rem] bottom-[35%] -left-[4.2rem] bg-[#CD7F32] -rotate-90 text-center font-semibold text-lg text-white py-2 w-[10em] h-fit">
BRONZE
</div>
<div class="cfck1"></div>
<div class="c8p73 cfoch flex justify-center items-center gap-8 md:gap-20 mt-4 mb-8">
<div class="flex flex-col items-center justify-center lg:ml-[-3.5rem]">
<img class="w-28 md:w-40" src="./images/ethindia-logo.svg" alt="ETHINDIA LOGO" />
</div>
<div class="flex flex-col items-center justify-center">
<img class="w-24 md:w-36" src="./images/Polygon.svg" alt="POLYGON LOGO" />
<span class="font-semibold text-lg md:text-xl">Polygon</span>
</div>
</div>
</div>
<!-- <div class="ce3al border-t border-gray-800"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Arrows -->
</div>
</div>
</section>
<!-- Testimonials carousel -->
<section id="collabs">
<div class="cknuf chyag ck7tl cj5a0">
<div class="csaom cksyi">
<!-- Section header -->
<!-- Gold Silver and Bronze Sponsors -->
<div class="cknuf cz30m cz74e c1xp8 cpnha">
<div>
<div class="cwkz6 cmmug cpb1t c6mtw cicf4 c0xld ciph8 cjeaj">Welcoming</div>
</div>
<h2 class="cr09c cmmug cr2fi chaw1 ch3zp cicf4 ckopp cjeaj">Our Community Partners</h2>
</div>
<!-- Carousel built with Swiper.js [https://swiperjs.com/] -->
<!-- * Initialized in src/js/main.js -->
<!-- * Custom styles in src/css/additional-styles/theme.scss -->
<div
class="ca60c cc4v0 cqez1 c0xhb chxq1 ckrgn c80l1 cxbfo cy3ub cysd2 cgxgf cur8q cdlvo ct9mr ckqgz corv8 cgemu">
<div class="testimonials-carousel swiper-container cxxlx">
<div class="swiper-wrapper cn7ud" data-highlighter="">
<!-- Carousel items -->
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" src="./images/community-partners/BWC banner - black - Kumar.jpg" width="56"
height="56" alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Blockchain World Co</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/blockchainworldco/" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<div>
<img class="c8p73" src="./images/community-partners/IMG-20240626-WA0060 - Daksh Saini.jpg"
width="56" height="56" alt="Icon 01" />
</div>
<div class="cfck1">
<div class="ceq85 cd2du cokyf">CodeX</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/codexnetwork8?igsh=MWJzbG9jOHZscmswMw==" target="_blank">Check
Out<span class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" src="./images/community-partners/Code Social - Arushi Malhotra.png" width="56"
height="56" alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Code Social</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/codesocial.tech/" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<!-- Sponsor Details -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" src="./images/community-partners/Coding Catalyst (2) - Abhinav Gupta.png"
width="56" height="56" alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Coding Catalyst</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://instagram.com/codingcatalyst/" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" src="./images/community-partners/centerdwhite v.png" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Decentraclasses</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/decentraclasses?igsh=cnE2ejIza3FtbTEy" target="_blank">Check
Out<span class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73"
src="./images/community-partners/DevStation- transparent Logo - Harsh Trivedi.png" width="56"
height="56" alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">DevStation</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/dev__station?igsh=MXRjZHF0bHRrMjh0Yg==" target="_blank">Check
Out<span class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" style="object-fit: contain"
src="./images/community-partners/DevApexindia - SACHIN JHA.png" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">DevApex India</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.linkedin.com/company/devapexindia" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" style="object-fit: contain"
src="./images/community-partners/Logo - Srishti Rohila.jpg" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Society for Data Science</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://linktr.ee/S4DS_MIET" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" src="./images/community-partners/Mind spark.jpg" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Mind Spark TECHNOLOGY</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/mindspark.tech?igsh=MW8zd2d2eWd0aG52Yg=="
target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73" src="./images/community-partners/Tezos.jpg" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Tezos</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://tezosjamiahamdard.github.io/TezosWebsite" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73 object-contain bg-black"
src="./images/community-partners/Logo - Pratham Singh (1).png" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">IEEE Student Branch Manipal</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/ieeesbm?igsh=MWRqOHhicGVtZnBucg==" target="_blank">Check
Out<span class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73 object-contain bg-white"
src="./images/community-partners/Delhi NCR Kotlin User Group.png" width="56" height="56"
alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Delhi NCR Kotlin User Group</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.linkedin.com/company/delhi-kotlin-user-group/" target="_blank">Check
Out<span class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73 object-contain bg-[#171910]" src="./images/community-partners/Events Info.PNG"
width="56" height="56" alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Events Info</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/eventsinfo_/" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->
<div class="cl2cn c9pxh c0mvq c11y1 cd1bq cqp1f c2rol cffk1 cxlvw" aria-hidden="true">
<canvas data-particle-animation="" data-particle-quantity="3"></canvas>
</div>
<!-- Radial gradient -->
<div class="c431g cl2cn cl2el cddhp c0mvq cmfhc cmd0z cbixb cqedr" aria-hidden="true">
<div class="c0wqh cl2cn c9pxh cky3t ctqkp c07gv cmltl cqp1f c2rol cx92y"></div>
</div>
<div class="cs2x1 c0tib c8rkc clcaa">
<img class="c8p73 bg-[#100D28]" src="./images/community-partners/Network Augment.jpg" width="56"
height="56" alt="Icon 01" />
<div class="cfck1">
<div class="ceq85 cd2du cokyf">Network Augment</div>
</div>
<div class="ce3al">
<a class="cwkz6 cxwsr cqnsz ciph8 cuxtl cco4s cykc9 c2rol c5dkl cxxlx"
href="https://www.instagram.com/net.aug/" target="_blank">Check Out<span
class="ctkza ctfx3 ct2xv cot2b cykc9 c2rol c8087">-></span></a>
</div>
</div>
</div>
</div>
<div
class="swiper-slide ca60c c4im5 co970 cjbis ctqkp cdgtm cm39l cc4v0 cuze9 cvrel czub9 cu486 cp5f4 cs5rb cprit ch9g6 cpt2o cb0qf c2vtn chx0y c1e1k cysd2 cgxgf cv2ch caiin cegds cb5el cd6it cxa15 chaq6 c7nu9 cahiq">
<div class="ca60c c64tv c0tib co970 chrb3 cp73f">
<!-- Particles animation -->