-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1339 lines (1228 loc) · 75.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeRave</title>
<link rel="shortcut icon" href="assets/images/favicon.jpg" type="image/x-icon">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/aos.css">
<link rel="stylesheet" href="assets/css/all.min.css">
<link rel="stylesheet" href="assets/css/lightcase.css">
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,900;1,900&display=swap" rel="stylesheet">
<!-- main css for template -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- ===============>> Preloader start here <<================= -->
<div class="preloader">
<img src="assets/images/logo/preloader.png" alt="Apes land">
</div>
<!-- ===============>> Preloader end here <<================= -->
<!-- ========== Multipage Header Section Starts Here========== -->
<header class="header-section">
<div class="header-bottom">
<div class="container">
<div class="header-wrapper">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo/logo.png" alt="logo">
</a>
</div>
<div class="menu-area">
<ul class="menu">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#team">Themes</a>
</li>
<li>
<a href="#faq">FAQ</a>
</li>
</ul>
<div class="header-btn">
<a href="https://discord.gg/4vaVA7u6k8" target="_blank" class="default-btn default-btn--secondary">
<span>Join <i class="fa-brands fa-discord"></i></span>
</a>
<!-- <a href="#" class="default-btn" data-bs-toggle="modal" data-bs-target="#wallet-option">
<span>Register <i class="fa-solid fa-user-plus"></i></span>
</a> -->
</div>
<!-- toggle icons -->
<div class="header-bar d-lg-none">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- ========== Multipage Header Section Ends Here========== -->
<!-- connect wallet modal start -->
<div class="wallet-modal modal fade" id="wallet-option" tabindex="-1" aria-labelledby="choose-wallet"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="choose-wallet">Choose your Events</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p>Secure your spot at the coding event and <br/> let your ideas come to life. </p>
<ul class="wallet__list">
<li class="wallet__list-item"><a href="#"> <span><img src="assets/images/events/AlgoUnlock.jpg"
alt="Algo Unlock">
</span></a>Algo Unlock</li>
<li class="wallet__list-item"><a href="#"> <span><img src="assets/images/events/CodeSprint.jpeg"
alt="Code Sprint">
</span></a>Code Sprint</li>
<li class="wallet__list-item"><a href="#"> <span><img src="assets/images/events/Hackathon.jpg"
alt="Devathon">
</span></a>Devathon</li>
</ul>
<p>By registering in the above events, you agree to our Terms of Service and our Privacy Policy.</p>
</div>
</div>
</div>
</div>
<!-- connect wallet modal end -->
<!-- ================> Banner section start here <================== -->
<section id="home" class="banner" style="background-image: url(assets/images/banner/bg.jpg);">
<div class="container">
<div class="banner__wrapper">
<div class="row g-5 align-items-center">
<div class="col-lg-6">
<div class="banner__content" data-aos="fade-right" data-aos-duration="2000">
<!-- <h3>First<span class="color--secondary-color">Hacakthon<i
class="fa-solid fa-code"></i></span> in SLIET</h3> -->
<h1>Code <span class="color--theme-color">Create <br> </span> Collaborate</h1>
<p>From lines of code to lines of impact:<br/>
Join the hackathon</p>
<!-- timer -->
<div class="container-timer">
<div id="timer"></div>
</div>
<!-- timer ends -->
<div
class="apply-button"
data-hackathon-slug="code-rave"
data-button-theme="light"
` style="height: 44px; width: 312px"
></div>
<div class="btn-group">
<!-- <a href="https://discord.com/invite/xTYNQr5B" target="_blank" class="default-btn default-btn--secondary">
<span>Join <i class="fa-brands fa-discord"></i></span>
</a> -->
<!-- <a href="#" class="default-btn" data-bs-toggle="modal" data-bs-target="#wallet-option">
<span>Register Now</span>
</a> -->
</div>
</div>
</div>
<div class="col-lg-6">
<div class="banner__thumb d-flex justify-content-center" data-aos="fade-left"
data-aos-duration="2000">
<img src="assets/images/banner/01b.gif" alt="banner Image">
<a class="banner__video" href="https://www.youtube.com/embed/s6aZVv301aY"
data-rel="lightcase">
<div class="banner__video-inner">
<svg viewBox="0 0 100 100">
<defs>
<path id="circle" d="
M 50, 50
m -37, 0
a 37,37 0 1,1 74,0
a 37,37 0 1,1 -74,0" />
</defs>
<text>
<textPath xlink:href="#circle">
Hack is live * Hack is live * Hack Is live
</textPath>
</text>
</svg>
<span><i class="fa-solid fa-play" style="color: black"></i></span>
</div>
</a>
<div class="banner-shape">
<img src="assets/images/banner/icon/01.png" alt="shape">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================> Banner section end here <================== -->
<!-- ================> Counter section start here <================== -->
<section class="counter counter--uplifted">
<div class="container">
<div class="counter__wrapper">
<div class="row g-1">
<div class="col-lg-3 col-sm-6">
<div class="counter__item">
<div class="counter__item-content">
<h2><span class="purecounter" data-purecounter-start="0"
data-purecounter-end="3">3</span> </h2>
<p>Events</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="counter__item">
<div class="counter__item-content">
<h2><span class="purecounter" data-purecounter-start="0" data-purecounter-end="36"
data-purecounter-once="false">36</span>Hr.</h2>
<p>Hackathon</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="counter__item">
<div class="counter__item-content">
<h2><span class="purecounter" data-purecounter-start="0" data-purecounter-end="50"
data-purecounter-once="false">50</span>k+</h2>
<p>Prizes worth</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="counter__item">
<div class="counter__item-content">
<h2><span class="purecounter" data-purecounter-start="0" data-purecounter-end="200"
data-purecounter-once="false">200</span>+</h2>
<p>Participants</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================> Counter section end here <================== -->
<!-- ================> About section start here <================== -->
<section class="about padding-top padding-bottom" id="about">
<div class="container">
<div class="about__wrapper">
<div class="row g-5">
<div class="col-lg-6">
<div class="about__thumb" data-aos="fade-up" data-aos-duration="1500">
<img src="assets/images/about/01.png" alt="About Image">
</div>
</div>
<div class="col-lg-6">
<div class="about__content" data-aos="fade-up" data-aos-duration="2000">
<p class="subtitle">The Story</p>
<h2>What is CodeRave?</h2>
<p>Getting into a loop of ideas, but finding out where to showcase them? It's time to think big and act fast!💡 Start building projects and join us at CodeRave🛠️<br/>This event provides a platform for passionate developers, designers, and enthusiasts to come together and transform their ideas into reality. It's not just an opportunity to showcase technical skills; it's a chance to network, learn, and have a memorable time with like-minded individuals.🤝
<br/>
Your keyboard is your sword, your idea is your challenge, code is your vision, and CodeRave is your stage! 🚨
<br/>
See you all in the hackathon!🔍💻</p>
<div class="mint-step">
<p class="subtitle color--secondary-color">Easy Steps</p>
<h3>How to Register?</h3>
<p>Ready to flaunt your coding skills? Follow the steps below to showcase your coding prowess!</p>
<ul class="mint-step__list">
<li class="mint-step__list-item"><span class="color--secondary-color">1.</span>
Click Apply with Devfolio</li>
<li class="mint-step__list-item"><span class="color--secondary-color">2.</span>
Submit the details</li>
<!-- <li class="mint-step__list-item"><span class="color--theme-color">3.</span>
Confirm the transaction</li>
<li class="mint-step__list-item"><span class="color--theme-color">4.</span>
Confirmation mail</li> -->
</ul>
<!-- <div class="btn-group">
<a href="https://discord.com/invite/xTYNQr5B" target="_blank" class="default-btn default-btn--secondary">
<span>Join <i class="fa-brands fa-discord"></i></span>
</a>
<a href="#" class="default-btn" data-bs-toggle="modal" data-bs-target="#wallet-option">
<span>Register Now</span>
</a>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================> About section end here <================== -->
<!-- ================>Roadmap section start here <================== -->
<section class="roadmap roadmap--style1 padding-top padding-bottom" id="roadmap"
style="background-image: url(assets/images/roadmap/bg.jpg);">
<div class="container">
<div class="section-header text-center">
<p class="subtitle">Get, Set and Code</p>
<h2>Schedule</h2>
</div>
<div class="roadmap__wrapper">
<div class="row gy-4 gy-md-0 gx-5">
<!-- <div class="col-md-6 offset-md-6">
<div class=" roadmap__item ms-md-4 aos-init" data-aos="fade-left" data-aos-duration="800">
<div class="roadmap__item-inner">
<div class="roadmap__item-content">
<div class="roadmap__item-header">
<h4>Algo Unlock</h4>
<p>7th April</p>
</div>
<p>We will be providing the input format and the output format without any problem statement. Also, there will be around 4 sample inputs and their corresponding output and the player's objective is to guess the logic that has been used in producing the output.</p>
</div>
</div>
<span class="svg-shape"><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="210px" height="10px">
<path fill-rule="evenodd" fill-opacity="0.102" d=" M5.000,-0.001 L30.000,-0.001 L25.000,9.999 L-0.000,9.999 L5.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.302" d=" M35.000,-0.001 L60.000,-0.001 L55.000,9.999 L30.000,9.999 L35.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.502" d=" M65.000,-0.001 L90.000,-0.001 L85.000,9.999 L60.000,9.999 L65.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.702" d=" M95.000,-0.001 L120.000,-0.001 L115.000,9.999 L90.000,9.999 L95.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.8" d=" M125.000,-0.001 L150.000,-0.001 L145.000,9.999 L120.000,9.999
L125.000,-0.001 Z" />
<path fill-rule="evenodd" fill-opacity="0.902" d=" M155.000,-0.001 L180.000,-0.001 L175.000,9.999 L150.000,9.999
L155.000,-0.001 Z" />
<path fill-rule="evenodd" d=" M185.000,-0.001 L210.000,-0.001 L210.000,9.999 L180.000,9.999
L185.000,-0.001 Z" />
</svg></span>
</div>
</div>
<div class="col-md-6">
<div class=" roadmap__item ms-auto me-md-4 aos-init" data-aos="fade-right"
data-aos-duration="800">
<div class="roadmap__item-inner">
<div class="roadmap__item-content">
<div class="roadmap__item-header">
<h4>Code Sprint (Round-1)</h4>
<p>10th April</p>
</div>
<p>Get ready for an adrenaline-packed coding showdown! Join us for our 1st round of competitive coding event featuring 5-6 mind-bending problems. Battle it out for glory in 3 intense hours of coding brilliance. Top performers will qualify for the second round.</p>
</div>
</div>
<span class="svg-shape"><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="210px" height="10px">
<path fill-rule="evenodd" fill-opacity="0.102" d=" M5.000,-0.001 L30.000,-0.001 L25.000,9.999 L-0.000,9.999 L5.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.302" d=" M35.000,-0.001 L60.000,-0.001 L55.000,9.999 L30.000,9.999 L35.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.502" d=" M65.000,-0.001 L90.000,-0.001 L85.000,9.999 L60.000,9.999 L65.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.702" d=" M95.000,-0.001 L120.000,-0.001 L115.000,9.999 L90.000,9.999 L95.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.8" d=" M125.000,-0.001 L150.000,-0.001 L145.000,9.999 L120.000,9.999
L125.000,-0.001 Z" />
<path fill-rule="evenodd" fill-opacity="0.902" d=" M155.000,-0.001 L180.000,-0.001 L175.000,9.999 L150.000,9.999
L155.000,-0.001 Z" />
<path fill-rule="evenodd" d=" M185.000,-0.001 L210.000,-0.001 L210.000,9.999 L180.000,9.999
L185.000,-0.001 Z" />
</svg></span>
</div>
</div>
<div class="col-md-6 offset-md-6">
<div class="roadmap__item ms-md-4 aos-init" data-aos="fade-left" data-aos-duration="800">
<div class="roadmap__item-inner">
<div class="roadmap__item-content">
<div class="roadmap__item-header">
<h4>Code Sprint (Round-2)</h4>
<p>12th April</p>
</div>
<p>Prepare for a heart-pounding coding face-off! Step into the arena for our thrilling second round of competitive coding, presenting 5-6 challenging problems. Engage in a 3-hour marathon of coding excellence and vie for victory.This is the grand finale where champions will be crowned.</p>
</div>
</div>
<span class="svg-shape"><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="210px" height="10px">
<path fill-rule="evenodd" fill-opacity="0.102" d=" M5.000,-0.001 L30.000,-0.001 L25.000,9.999 L-0.000,9.999 L5.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.302" d=" M35.000,-0.001 L60.000,-0.001 L55.000,9.999 L30.000,9.999 L35.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.502" d=" M65.000,-0.001 L90.000,-0.001 L85.000,9.999 L60.000,9.999 L65.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.702" d=" M95.000,-0.001 L120.000,-0.001 L115.000,9.999 L90.000,9.999 L95.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.8" d=" M125.000,-0.001 L150.000,-0.001 L145.000,9.999 L120.000,9.999
L125.000,-0.001 Z" />
<path fill-rule="evenodd" fill-opacity="0.902" d=" M155.000,-0.001 L180.000,-0.001 L175.000,9.999 L150.000,9.999
L155.000,-0.001 Z" />
<path fill-rule="evenodd" d=" M185.000,-0.001 L210.000,-0.001 L210.000,9.999 L180.000,9.999
L185.000,-0.001 Z" />
</svg></span>
</div>
</div> -->
<div class="col-md-6">
<div class="roadmap__item ms-auto me-md-4 aos-init" data-aos="fade-right"
data-aos-duration="800">
<div class="roadmap__item-inner">
<div class="roadmap__item-content">
<div class="roadmap__item-header">
<h4>Hack Begins</h4>
<p>12th April</p>
</div>
<p>Hackathon starts with teams strategizing and coding fervently on their idea. As the first checkpoint looms, excitement builds. Participants showcase early prototypes and concepts, fueling anticipation.</p>
</div>
</div>
<span class="svg-shape"><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="210px" height="10px">
<path fill-rule="evenodd" fill-opacity="0.102" d=" M5.000,-0.001 L30.000,-0.001 L25.000,9.999 L-0.000,9.999 L5.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.302" d=" M35.000,-0.001 L60.000,-0.001 L55.000,9.999 L30.000,9.999 L35.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.502" d=" M65.000,-0.001 L90.000,-0.001 L85.000,9.999 L60.000,9.999 L65.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.702" d=" M95.000,-0.001 L120.000,-0.001 L115.000,9.999 L90.000,9.999 L95.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.8" d=" M125.000,-0.001 L150.000,-0.001 L145.000,9.999 L120.000,9.999
L125.000,-0.001 Z" />
<path fill-rule="evenodd" fill-opacity="0.902" d=" M155.000,-0.001 L180.000,-0.001 L175.000,9.999 L150.000,9.999
L155.000,-0.001 Z" />
<path fill-rule="evenodd" d=" M185.000,-0.001 L210.000,-0.001 L210.000,9.999 L180.000,9.999
L185.000,-0.001 Z" />
</svg></span>
</div>
</div>
<div class="col-md-6 offset-md-6">
<div class="roadmap__item ms-md-4 aos-init" data-aos="fade-left" data-aos-duration="800">
<div class="roadmap__item-inner">
<div class="roadmap__item-content">
<div class="roadmap__item-header">
<h4>Hacking Contd.</h4>
<p>13th April</p>
</div>
<p>Excitement escalates as mentors join the fray, guiding teams towards excellence. With checkpoints looming, participants refine their projects, fueled by expert advice and collaboration. As the clock ticks towards the 36-hour mark, anticipation builds. </p>
</div>
</div>
<span class="svg-shape"><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="210px" height="10px">
<path fill-rule="evenodd" fill-opacity="0.102" d=" M5.000,-0.001 L30.000,-0.001 L25.000,9.999 L-0.000,9.999 L5.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.302" d=" M35.000,-0.001 L60.000,-0.001 L55.000,9.999 L30.000,9.999 L35.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.502" d=" M65.000,-0.001 L90.000,-0.001 L85.000,9.999 L60.000,9.999 L65.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.702" d=" M95.000,-0.001 L120.000,-0.001 L115.000,9.999 L90.000,9.999 L95.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.8" d=" M125.000,-0.001 L150.000,-0.001 L145.000,9.999 L120.000,9.999
L125.000,-0.001 Z" />
<path fill-rule="evenodd" fill-opacity="0.902" d=" M155.000,-0.001 L180.000,-0.001 L175.000,9.999 L150.000,9.999
L155.000,-0.001 Z" />
<path fill-rule="evenodd" d=" M185.000,-0.001 L210.000,-0.001 L210.000,9.999 L180.000,9.999
L185.000,-0.001 Z" />
</svg></span>
</div>
</div>
<div class="col-md-6">
<div class="roadmap__item ms-auto me-md-4 aos-init" data-aos="fade-right"
data-aos-duration="800">
<div class="roadmap__item-inner">
<div class="roadmap__item-content">
<div class="roadmap__item-header">
<h4>Final Pitching</h4>
<p>14th April</p>
</div>
<p>Finale unfolds with teams eagerly preparing to present their groundbreaking ideas. Tension fills the air as they take the stage, showcasing hours of hard work before esteemed judges. The suspense peaks as winners are announced, celebrating triumphs in innovation inspiring a new generation of creators.</p>
</div>
</div>
<span class="svg-shape"><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="210px" height="10px">
<path fill-rule="evenodd" fill-opacity="0.102" d=" M5.000,-0.001 L30.000,-0.001 L25.000,9.999 L-0.000,9.999 L5.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.302" d=" M35.000,-0.001 L60.000,-0.001 L55.000,9.999 L30.000,9.999 L35.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.502" d=" M65.000,-0.001 L90.000,-0.001 L85.000,9.999 L60.000,9.999 L65.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.702" d=" M95.000,-0.001 L120.000,-0.001 L115.000,9.999 L90.000,9.999 L95.000,-0.001
Z" />
<path fill-rule="evenodd" fill-opacity="0.8" d=" M125.000,-0.001 L150.000,-0.001 L145.000,9.999 L120.000,9.999
L125.000,-0.001 Z" />
<path fill-rule="evenodd" fill-opacity="0.902" d=" M155.000,-0.001 L180.000,-0.001 L175.000,9.999 L150.000,9.999
L155.000,-0.001 Z" />
<path fill-rule="evenodd" d=" M185.000,-0.001 L210.000,-0.001 L210.000,9.999 L180.000,9.999
L185.000,-0.001 Z" />
</svg></span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================>Roadmap section end here <================== -->
<!-- ================>collection section start here <================== -->
<!-- <section class="collection padding-top padding-bottom">
<div class="container">
<div class="collection__wrapper">
<div class="row g-4">
<div class="col-lg-3">
<div class="collection__header">
<div class="collection__header-content">
<p class="subtitle">Past Events</p>
<h2>Internwell SSDC</h2>
<p>SSDC: "turning caffeine into code since 2016"</p>
</div>
</div>
</div>
<div class="col-lg-9">
<div class="swiper collection__slider1">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/01.jpg"
alt="NFT Image"></div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/02.jpeg"
alt="NFT Image"></div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/03.jpeg"
alt="NFT Image"></div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/04.jpeg"
alt="NFT Image"></div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/05.jpg"
alt="NFT Image"></div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/06.jpg"
alt="NFT Image"></div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/07.jpg"
alt="NFT Image"></div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-9">
<div class="swiper collection__slider2">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/001.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/002.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/003.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/004.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/005.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/006.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/007.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/008.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/009.jpeg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/010.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/011.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/012.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/013.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/014.jpg"
alt="NFT Image">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="collection__item">
<div class="collection__item-thumb"><img src="assets/images/collection/015.jpeg"
alt="NFT Image">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="collection__btn">
<a href="https://discord.gg/4vaVA7u6k8" target="_blank" class="default-btn default-btn--secondary"> <span><i class="fab fa-discord"></i> View
On Discord</span> </a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- ================>collection section end here <================== -->
<!-- ================>Team section start here <================== -->
<section class="team padding-top padding-bottom" id="team" style="background-image: url(./assets/images/team/bg.jpg); background-repeat: no-repeat;
background-size: cover;
background-position: center;">
<div class="container">
<div class="section-header text-center">
<p class="subtitle">Tracks</p>
<h2>Themes</h2>
</div>
<div class="team__wrapper">
<div class="row g-5 justify-content-center">
<div class="col-lg-3 col-sm-6">
<div class="team__item team__item--style2">
<div class="team__item-inner">
<div class="team__item-thumb">
<img src="assets/images/team/Pencil.webp" alt="Education">
</div>
<div class="team__item-content">
<div class="team__item-author">
<h4>Education</h4>
<!-- <p>Core Team</p> -->
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="team__item team__item--style2">
<div class="team__item-inner">
<div class="team__item-thumb">
<img src="assets/images/team/Stethoscope.webp" alt="Health">
</div>
<div class="team__item-content">
<div class="team__item-author">
<h4>Health</h4>
<!-- <p>Core Team</p> -->
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="team__item team__item--style2">
<div class="team__item-inner">
<div class="team__item-thumb">
<img src="assets/images/team/Robot.png" alt="Robot">
</div>
<div class="team__item-content">
<div class="team__item-author">
<h4>AI/ML</h4>
<!-- <p>Core Team</p> -->
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="team__item team__item--style2">
<div class="team__item-inner">
<div class="team__item-thumb">
<img src="assets/images/team/Globe with Meridians.webp" alt="Globe">
</div>
<div class="team__item-content">
<div class="team__item-author">
<h4>Web3</h4>
<!-- <p>Core Team</p> -->
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="team__item team__item--style2">
<div class="team__item-inner">
<div class="team__item-thumb">
<img src="assets/images/team/Electric Plug.webp" alt="Plug">
</div>
<div class="team__item-content">
<div class="team__item-author">
<h4>VLSI</h4>
<!-- <p>Core Team</p> -->
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="team__item team__item--style2">
<div class="team__item-inner">
<div class="team__item-thumb">
<img src="assets/images/team/Light Bulb.webp" alt="Open Inn.">
</div>
<div class="team__item-content">
<div class="team__item-author">
<h4>Open Innovation</h4>
<!-- <p>Core Team</p> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================>Team section end here <================== -->
<!-- ================FAQ section start here <================== -->
<section id="faq" class="faq padding-top padding-bottom">
<div class="container">
<div class="section-header text-center">
<p class="subtitle">Questions & Answers</p>
<h2>Frequently Asked Questions</h2>
</div>
<div class="faq__wrapper">
<div class="row g-4">
<div class="col-lg-6">
<div class="accordion" id="faqAccordion1">
<div class="row g-4">
<div class="col-12">
<div class="accordion__item" data-aos="fade-up" data-aos-duration="1000">
<div class="accordion__header" id="faq1">
<button class="accordion__button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#faqBody1"
aria-expanded="false" aria-controls="faqBody1">
Who can participate? 🌐<span class="plus-icon"></span>
</button>
</div>
<div id="faqBody1" class="accordion-collapse collapse" aria-labelledby="faq1"
data-bs-parent="#faqAccordion1">
<div class="accordion__body">
CodeRave is open to a diverse range of participants, including students, professionals, and individuals with varying skill levels. Whether you are a beginner or an experienced developer, despite the field of academic discipline chosen, you are eligible to join us! 🚀
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="accordion__item" data-aos="fade-up" data-aos-duration="1100">
<div class="accordion__header" id="faq2">
<button class="accordion__button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faqBody2" aria-expanded="false"
aria-controls="faqBody2">
What if this is my first hackathon? <span class="plus-icon"></span>
</button>
</div>
<div id="faqBody2" class="accordion-collapse collapse"
aria-labelledby="faq2" data-bs-parent="#faqAccordion1">
<div class="accordion__body">
Congratulations on considering your first hackathon! CodeRave is a great opportunity for beginners. We would be having expert sessions, guidance by mentors along the way to help you out in executing your ideas into projects. See you in the hackathon! 🤖
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="accordion__item" data-aos="fade-up" data-aos-duration="1200">
<div class="accordion__header" id="faq3">
<button class="accordion__button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#faqBody3"
aria-expanded="false" aria-controls="faqBody3">
Do I need to pay a fee?<span class="plus-icon"></span>
</button>
</div>
<div id="faqBody3" class="accordion-collapse collapse" aria-labelledby="faq3"
data-bs-parent="#faqAccordion1">
<div class="accordion__body">
No. There is no registration fee for participating in the hackathon. This approach ensures that creativity and innovation can flourish without restrictions, allowing participants to immerse themselves in a collaborative and dynamic environment.🌐✨
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="accordion" id="faqAccordion2">
<div class="row g-4">
<div class="col-12">
<div class="accordion__item" data-aos="fade-up" data-aos-duration="1000">
<div class="accordion__header" id="faq1-two">
<button class="accordion__button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#faqBody1-two"
aria-expanded="false" aria-controls="faqBody1-two">
What should be the team size? <span class="plus-icon"></span>
</button>
</div>
<div id="faqBody1-two" class="accordion-collapse collapse"
aria-labelledby="faq1-two" data-bs-parent="#faqAccordion2">
<div class="accordion__body">
The team size can range from a minimum of 1 participant to a maximum of 4 participants. 🤝
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="accordion__item" data-aos="fade-up" data-aos-duration="1100">
<div class="accordion__header" id="faq2-two">
<button class="accordion__button collapsed" type="button"
data-bs-toggle="collapse" data-bs-target="#faqBody2-two"
aria-expanded="true" aria-controls="faqBody2-two">
Can I participate in multiple events? <span class="plus-icon"></span>
</button>
</div>
<div id="faqBody2-two" class="accordion-collapse collapse"
aria-labelledby="faq2-two" data-bs-parent="#faqAccordion2">
<div class="accordion__body">
Yes, you can participate in any number of events/competitions. Just make sure you have registered for the event and try to avoid time clashes.
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="accordion__item" data-aos="fade-up" data-aos-duration="1200">
<div class="accordion__header" id="faq3-two">
<button class="accordion__button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#faqBody3-two" aria-expanded="false"
aria-controls="faqBody3-two">
Have more questions? 🤔<span class="plus-icon"></span>
</button>
</div>
<div id="faqBody3-two" class="accordion-collapse collapse"
aria-labelledby="faq3-two" data-bs-parent="#faqAccordion2">
<div class="accordion__body">
Feel free to write to us at [email protected] or create a ticket🎫 on discord
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ================FAQ section end here <================== -->
<!-- ================Blog section start here <================== -->
<!-- <section class="blog padding-top padding-bottom">
<div class="container">
<div class="section-header text-center">
<p class="subtitle">Event</p>
<h2>Organizers</h2>
</div>
<div class="blog__wrapper">
<div class="row justify-content-center g-4">
<div class="col-lg-4 col-md-6" style="width: 200px">
<div class="blog__item blog__item--style2">
<div class="blog__inner">
<div class="blog__thumb">
<img src="assets/images/blog/02.jpg" alt="Blog Images">
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="width: 200px">
<div class="blog__item blog__item--style2">
<div class="blog__inner">
<div class="blog__thumb">
<img src="assets/images/blog/01.png" alt="Blog Images">
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="width: 200px">
<div class="blog__item blog__item--style2">
<div class="blog__inner">
<div class="blog__thumb">
<img src="assets/images/blog/04.jpg" alt="Blog Images">
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6" style="width: 200px">
<div class="blog__item blog__item--style2">
<div class="blog__inner">
<div class="blog__thumb">
<img src="assets/images/blog/03.png" alt="Blog Images">
</div>
</div>
</div>
</div>
</div>
<div class="mt-5 text-center">
<a href="blog.html" class="default-btn"><span>View all blog post</span></a>
</div>
</div>
</div>
</section> -->
<!-- ================Blog section end here <================== -->