-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1027 lines (972 loc) · 39.9 KB
/
index.html
File metadata and controls
1027 lines (972 loc) · 39.9 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
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>
<!-- Metas -->
<meta charset="utf-8">
<title>HackBeats Green Tech 2023</title>
<meta name="description" content="Meenachil Hacks, 24 Hour National Level Hackathon from August">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="ntUFSe18AqnePAZFrbNZ5cSVRyXndF_cBrPCwZgZ4CY" />
<!-- Css -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/base.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/main.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/venobox.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/fonts.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,700" rel="stylesheet">
<link rel="icon" href="img/hb-logo.png">
</head>
<body>
<!-- Preloader -->
<div class="loader">
<!-- Preloader inner -->
<div class="loader-inner">
<svg width="120" height="220" viewbox="0 0 100 100" class="loading-spinner" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<circle class="spinner" cx="50" cy="50" r="21" fill="#111111" stroke-width="1.5" />
</svg>
</div>
<!-- End preloader inner -->
</div>
<!-- End preloader-->
<!--Wrapper-->
<div class="wrapper">
<!--Hero section-->
<section class="hero overlay">
<!--Main slider-->
<div class="main-slider slider">
<ul class="slides">
<li>
<div class="background-img">
<img src="https://cdn.bio.link/themes/backgrounds/neon.jpg" alt="">
</div>
</li>
</ul>
</div>
<!--End main slider-->
<!--Header-->
<header class="header">
<!--Container-->
<div class="container ">
<!-- Navbar -->
<!--Row-->
<div class="row">
<div class="col-md-2">
<a class="scroll logo" href="#wrapper">
<img class="logo" src="img/hb-logo.png" width="50" alt="logo" />
</a>
</div>
<div class="col-md-10 text-right">
<nav class="main-nav">
<div class="toggle-mobile-but">
<a href="#" class="mobile-but">
<div class="lines"></div>
</a>
</div>
<ul>
<li><a class="scroll" href="#wrapper">Home</a></li>
<li><a class="scroll" href="#about">About</a></li>
<li><a class="scroll" href="#mentors">Judges & Mentors</a></li>
<li><a class="scroll" href="#workshop">Workshop</a></li>
<li><a class="scroll" href="#prizes">Prizes</a></li>
<li><a class="scroll" href="#sponsors">Sponsors</a></li>
</ul>
</nav>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
</header>
<!--End header-->
<!--Inner hero-->
<div class="inner-hero fade-out">
<!--Container-->
<div class="container hero-content">
<!--Row-->
<div class="row">
<img class="logo-default" src="img/hb-centre2.png" alt="logo" />
<h4>MORE THAN A HACKATHON</h4>
<br>
<p class="gradient-text"><strong> Registrations are Open</strong></p>
<!-- Devfolio button integration -->
<a href="https://hackbeats.devfolio.co/" target="_blank">
<div class="apply-button" data-hackathon-slug="hackbeats" data-button-theme="dark-inverted"
style="height: 44px; width: 312px"></div>
</a>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--End inner hero-->
</section>
<!--End hero section-->
<!--About section-->
<section id="about" class="about pt-120 pb-120 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<!-- About HackBeats -->
<!-- About Green Tech 2023 -->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="5.1983" y1="28.1187"
x2="43.4067" y2="11.702">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
<h1 class="title"><u style="color: #399BFF;"> About <b>Green Tech 2023</b></u> </h1>
<hr>
</linearGradient>
<p class="title-lead mt-20">HackBeats Green Tech is a hackathon focused on advancing green
technology through the use of AI, ML, Cloud Ops, and Blockchain. The event brings together
developers, engineers, and designers to collaborate and create innovative solutions for a
sustainable future.
Participants will have the opportunity to work with cutting-edge technologies to develop
solutions for real-world problems related to the environment, energy, and resources. Whether
it's using AI to optimize renewable energy production or using blockchain to track
sustainable supply chains, HackBeats is the perfect platform to showcase your skills and
make an impact.
Not only will participants have the opportunity to work with like-minded individuals, but
they will also have access to industry experts who will be on hand to provide guidance and
mentorship. Prizes will be awarded to the top teams, with the winning solutions being
considered for implementation by industry partners.
HackBeats is more than just a hackathon, it's a chance to make a difference and be a part of
the solution to some of the biggest challenges facing our planet today. Join us and let's
build a sustainable future together.<br>
<br>
<h5 class="gradient-text"><a class="title-lead mt-20" href="https://devfolio.co/code-of-conduct"
target="_blank">Hackathon Code
of Conduct</a></h5>
</p>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div class="container ">
<!-- Row -->
<div class="row">
<div class="col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="35px" height="25px"
viewBox="0 0 42 32" enable-background="new 0 0 42 32" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="5.1983" y1="28.1187"
x2="43.4067" y2="11.702">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_1_)" d="M38,30.5v-19c0-0.276-0.224-0.5-0.5-0.5S37,11.224,37,11.5v19c0,0.276-0.224,0.5-0.5,0.5h-31
C5.224,31,5,30.776,5,30.5v-19C5,11.224,4.776,11,4.5,11S4,11.224,4,11.5v19C4,31.327,4.673,32,5.5,32h31
C37.327,32,38,31.327,38,30.5z" />
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="4.7162" y1="26.9965"
x2="42.9245" y2="10.5799">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_2_)" d="M8.5,23C8.224,23,8,23.224,8,23.5S8.224,24,8.5,24H10v3.5c0,0.276,0.224,0.5,0.5,0.5
s0.5-0.224,0.5-0.5V24h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24
h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24h1.5c0.276,0,0.5-0.224,0.5-0.5S33.776,23,33.5,23H32v-5h1.5
c0.276,0,0.5-0.224,0.5-0.5S33.776,17,33.5,17H32v-4.5c0-0.276-0.224-0.5-0.5-0.5S31,12.224,31,12.5V17h-6v-4.5
c0-0.276-0.224-0.5-0.5-0.5S24,12.224,24,12.5V17h-6v-4.5c0-0.276-0.224-0.5-0.5-0.5S17,12.224,17,12.5V17h-6v-4.5
c0-0.276-0.224-0.5-0.5-0.5S10,12.224,10,12.5V17H8.5C8.224,17,8,17.224,8,17.5S8.224,18,8.5,18H10v5H8.5z M31,18v5h-6v-5H31z
M24,18v5h-6v-5H24z M11,18h6v5h-6V18z" />
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-0.4811" y1="14.9003"
x2="37.7272" y2="-1.5164">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_3_)" d="M32.5,3h4.25C36.837,3,37,3,37,3.5V8H5V3.5C5,3.224,5.224,3,5.5,3h4C9.776,3,10,2.776,10,2.5
S9.776,2,9.5,2h-4C4.673,2,4,2.673,4,3.5v5C4,8.776,4.224,9,4.5,9h33C37.776,9,38,8.776,38,8.5v-5C38,2.394,37.354,2,36.75,2H32.5
C32.224,2,32,2.224,32,2.5S32.224,3,32.5,3z" />
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-1.6311" y1="12.2237"
x2="36.5772" y2="-4.1929">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_4_)" d="M26.5,3C26.776,3,27,2.776,27,2.5S26.776,2,26.5,2h-11C15.224,2,15,2.224,15,2.5S15.224,3,15.5,3
H26.5z" />
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-2.9557" y1="9.1407"
x2="35.2526" y2="-7.2759">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_5_)"
d="M13,4.5v-4C13,0.224,12.776,0,12.5,0S12,0.224,12,0.5v4C12,4.776,12.224,5,12.5,5S13,4.776,13,4.5z" />
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-0.3065" y1="15.3067"
x2="37.9019" y2="-1.11">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F7" />
</linearGradient>
<path fill="url(#SVGID_6_)" d="M29.5,5C29.776,5,30,4.776,30,4.5v-4C30,0.224,29.776,0,29.5,0S29,0.224,29,0.5v4
C29,4.776,29.224,5,29.5,5z" />
</svg>
<p>
<strong>DATE</strong>
<span>10th - 31st March 2023</span>
</p>
</div>
</div>
<div class="col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_7" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="35px" height="25px"
viewBox="0 0 42 32" enable-background="new 0 0 42 32" xml:space="preserve">
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="4.511" y1="11.8158"
x2="41.3229" y2="27.6695">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_7_)"
d="M10.239,31.926c0.009,0.006,0.021,0.003,0.03,0.009C10.341,31.973,10.418,32,10.499,32
c0.044,0,0.088-0.006,0.132-0.018l10.868-2.966l10.868,2.966C32.411,31.994,32.455,32,32.499,32c0.082,0,0.158-0.027,0.23-0.065
c0.01-0.005,0.021-0.003,0.03-0.009l9-5.5c0.191-0.117,0.281-0.348,0.22-0.563l-4.984-17.5c-0.041-0.147-0.148-0.267-0.29-0.326
c-0.142-0.057-0.301-0.048-0.436,0.026l-4.962,2.784c-0.24,0.135-0.326,0.44-0.191,0.681c0.135,0.242,0.439,0.327,0.682,0.191
l4.409-2.475l4.707,16.526l-8.015,4.898l-1.904-15.231c-0.034-0.275-0.293-0.466-0.559-0.434c-0.273,0.034-0.468,0.284-0.434,0.558
l1.907,15.259L22,28.115v-2.73c0-0.276-0.224-0.5-0.5-0.5s-0.5,0.224-0.5,0.5v2.73l-9.911,2.705l1.907-15.259
c0.034-0.274-0.16-0.524-0.434-0.558c-0.272-0.032-0.524,0.159-0.559,0.434l-1.904,15.231L2.084,25.77L6.791,9.244l4.409,2.475
c0.242,0.134,0.546,0.049,0.682-0.191c0.135-0.241,0.049-0.545-0.191-0.681L6.729,8.063C6.595,7.988,6.436,7.979,6.293,8.037
c-0.142,0.059-0.249,0.178-0.29,0.326l-4.984,17.5c-0.062,0.216,0.028,0.446,0.22,0.563L10.239,31.926z" />
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="12.6241" y1="7.5582"
x2="28.5468" y2="14.4156">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_8_)" d="M21.161,23.367c0.096,0.088,0.217,0.132,0.339,0.132c0.12,0,0.24-0.043,0.336-0.129
C22.169,23.067,30,15.882,30,8.499c0-4.767-3.733-8.5-8.5-8.5S13,3.732,13,8.499C13,15.753,20.828,23.059,21.161,23.367z
M21.5,0.999c4.275,0,7.5,3.224,7.5,7.5c0,6.097-5.993,12.337-7.497,13.807C20.002,20.819,14,14.497,14,8.499
C14,4.223,17.225,0.999,21.5,0.999z" />
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.3671" y1="6.7191"
x2="25.6329" y2="10.2789">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_9_)"
d="M26,8.499c0-2.481-2.019-4.5-4.5-4.5S17,6.018,17,8.499s2.019,4.5,4.5,4.5S26,10.98,26,8.499z
M21.5,11.999c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S23.43,11.999,21.5,11.999z" />
</svg>
<p>
<strong>LOCATION</strong>
<span>Hack From anywhere in the world </span>
</p>
</div>
</div>
<div class="col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_10" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="35px" height="25px"
viewBox="0 0 42 32" enable-background="new 0 0 42 32" xml:space="preserve">
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="1.9027" y1="28.6566"
x2="55.9027" y2="10.9483">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_10_)" d="M40.498,0c-0.276,0-0.5,0.224-0.5,0.5v31c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5v-31
C40.998,0.224,40.774,0,40.498,0z" />
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1.1102" y1="26.2399"
x2="55.1102" y2="8.5316">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_10_)" d="M38.717,1.204c-0.17-0.083-0.376-0.062-0.526,0.055l-0.565,0.445C34.648,4.059,29.667,8,19.5,8H5.631
C4.18,8,3,9.2,3,10.674v10.714C3,22.828,4.18,24,5.631,24h3.394c0.088,1.125,0.502,3.794,2.454,5.761
C12.953,31.247,14.979,32,17.5,32c0.276,0,0.5-0.224,0.5-0.5S17.776,31,17.5,31c-2.242,0-4.026-0.652-5.306-1.938
c-1.668-1.677-2.067-4.025-2.163-5.062h2.995c0.085,0.682,0.36,1.881,1.274,2.802C15.089,27.597,16.166,28,17.5,28
c0.276,0,0.5-0.224,0.5-0.5S17.776,27,17.5,27c-1.055,0-1.891-0.302-2.484-0.896c-0.657-0.659-0.894-1.546-0.981-2.104h5.396
c10.216,0,15.237,3.963,18.237,6.331l0.522,0.411c0.089,0.07,0.198,0.105,0.307,0.105c0.075,0,0.15-0.017,0.219-0.051
c0.172-0.084,0.281-0.258,0.281-0.449V1.653C38.998,1.462,38.889,1.288,38.717,1.204z M4,21.388V10.674C4,9.751,4.731,9,5.631,9H9
v14H5.631C4.716,23,4,22.292,4,21.388z M37.998,29.317C34.864,26.851,29.672,23,19.432,23h-5.797
c-0.047-0.015-0.095-0.03-0.148-0.031c-0.001,0-0.001,0-0.002,0c-0.054,0-0.105,0.015-0.154,0.031H10V9h9.5
c10.237,0,15.392-3.864,18.498-6.316V29.317z" />
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-1.8839" y1="17.1097"
x2="52.1161" y2="-0.5987">
<stop offset="0" style="stop-color:#399BFF" />
<stop offset="1" style="stop-color:#EE71F9" />
</linearGradient>
<path fill="url(#SVGID_11_)" d="M1.5,21.857c0.276,0,0.5-0.224,0.5-0.5V10.643c0-0.276-0.224-0.5-0.5-0.5S1,10.367,1,10.643v10.714
C1,21.633,1.224,21.857,1.5,21.857z" />
</svg>
<p>
<strong>Problem Statements</strong>
<span>Environment Friendly</span>
</p>
</div>
</div>
<div class="col-md-3 col-sm-3 text-right">
<div class="block-info-1">
<!-- Devfolio button integration -->
<a href="https://hackbeats.devfolio.co/" target="_blank">
<div class="apply-button" data-hackathon-slug="hackbeats"
data-button-theme="dark-inverted" style="height: 44px; width: 312px"></div>
</a>
</div>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Faq section-->
<section id="faq" class="faq pt-120 pb-120 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center ">
<h1 class="title">ABOUT </h1>
<!-- <p class="title-lead mt-10 mb-20">Some frequently asked questions for you.</p> -->
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 ">
<div class="block-faq mb-50">
<h4 class="mb-10">ABOUT THE ORGANIZING COMMITTE</h4>
<p class="title-lead mb-30">HackBeats, a tech community aimed for encouraging and
promoting public speaking,communication skills, soft skills, best practices,
technical expertise and opensource contribution in the field of Computer Science via
conducting workshops , hackathons and mentorship sessions in an inclusive and
welcoming environment.</p>
<h4 class="mb-10">A WORD ON DIVERSITY</h4>
<p class="title-lead mt-30"> Green Tech is focused on Community Development and
Diversity. We believe everyone should be given equal chance and none should be
excluded rom technology. As a support to diversity,
there are special prizes and swags for Women Participants</p>
</div>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<!--End container-->
</section>
<!--End faq section-->
<!--End about section-->
<section id="mentors" class="speakers pt-120 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title">Mentors</h1>
<p class="title-lead mt-10">We are bringing you the perfect combination of content and
experience to ignite your <br>heart equip your mind and spark your skill.</p>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<div class="container block-content">
<div class="row">
<div class="col-sm-3 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<!-- <img src="" alt=""> -->
</div>
<div class="block-info-2">
<p>
<strong>To Be Declared!</strong>
</p>
<ul class="block-social">
<!-- <li><a href=""><i
class="icon-github"></i></a></li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-3 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<!-- <img src="" alt=""> -->
</div>
<div class="block-info-2">
<p>
<strong>To Be Declared</strong>
<!-- <span>Community</span> -->
</p>
<!-- <ul class="block-social">
<li><a href=""><i class="icon-facebook"></i></a></li>
<li><a href=""><i class="icon-linkedin"></i></a></li>
</ul> -->
</div>
</div>
</div>
</div>
<div class="col-sm-3 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<!-- <img src="" alt=""> -->
</div>
<div class="block-info-2">
<p>
<strong>To Be Declared</strong>
<!-- <span>Community</span> -->
</p>
<!-- <ul class="block-social">
<li><a href=""><i class="icon-facebook"></i></a></li>
<li><a href=""><i class="icon-linkedin"></i></a></li>
</ul> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!--Speakers section-->
<section id="speakers" class="speakers pt-120 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title">JUDGES</h1>
<p class="title-lead mt-10">We are bringing you the perfect combination of content and
experience to ignite your <br>heart equip your mind and spark your skill.</p>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<div class="container block-content judges">
<div class="row">
<div class="col-sm-3 pd-1 ">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2.jpg" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Prof.(Dr.0) Biswajit Singha </strong>
<span>Head of Dept.Basic Science</span>
<span>Camellia Institute of Technlogy </span>
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3 pd-1">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<!-- --><img src="img/3.jpg" alt="">
</div>
<div class="block-info-2">
<p>
<strong>To be Declared</strong>
<span>TBD</span>
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3 pd-1">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/4.jpg" alt="">
</div>
<div class="block-info-2">
<p>
<strong>To be Declared</strong>
<span>TBD</span>
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3 pd-1">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/4.jpg" alt="">
</div>
<div class="block-info-2">
<p>
<strong>To be Declared</strong>
<span>TBD</span>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End speakers section-->
<!--Workshop Sessions-->
<section id="workshop" class="speakers pt-120 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title">Workshops</h1>
<p class="title-lead mt-10">Whats a Hackathon without a Workshop or Two?<br>Learn Something
New...</p>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<div class="container block-content">
<div class="row">
<div class="col-sm-3 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img"> <img src="" alt=""> </div>
<div class="block-info-2">
<p> <strong>To be Declared</strong>
<p>TBDU </p>
</p>
<ul class="block-social">
<!-- <li><a href=""><i class="icon-github"></i></a></li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-3 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="" alt="">
</div>
<div class="block-info-2">
<p>
<strong>To Be Declared </strong>
<p>TBD </p>
</p>
<ul class="block-social">
<!-- <li><a href="https://github.com/Athul-CA"><i class="icon-github"></i></a>
</li>
<li><a href="https://www.instagram.com/athulcajay"><i
class="icon-instagram"></i></a></li>
<li><a href="https://www.twitter.com/athulcajay"><i
class="icon-twitter"></i></a></li> -->
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Workshop session-->
<!-- <section id="schedule" class="schedule pt-120 pb-120">
<!--Container>
<div class="container">
<!--Row
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title">EVENT SHEDULE</h1>
<p class="title-lead mt-10">The Complete shedule will be mailed after registration. <br>Register Now!! </p>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<!--End container-->
<Container>
<div class="container schedule">
<!--Row-->
<div class="row">
<div class="col-sm-8">
<ul class="block-tab">
<!--Tab-->
<li class="active ">
<!-- <div class="block-date"><i class="et-line-calendar"></i><strong>SCHEDULE OUTLINE</strong>
<span> 9 to 10 AUGUST 2019</span>
</div>
<div class="block-detail"> -->
<!-- <span class="time">Nov 9th</span> -->
<!-- <span class="topic">DAY 1</span> -->
<!-- <div class="block-text">
<p>1:00 PM - REGISTRATION</p>
<p>2:00 PM - OPENING CEREMONY</p>
<p>3:00 PM - HACKING BEGINS.....!!!!!</p>
<p>4:30 PM - TEA and SNACKS</p>
<p>7:00 PM - GAMES AND ACTIVITIES</p>
<p>8:30 PM - DINNER </p>
<p>12:15 AM - WORKSHOP</p>
<p>2:00 AM - BREAK(IF AWAKE)</p>
</div>
</div> -->
<!-- <div class="block-detail">
<span class="time">November 10th</span> <span class="topic">DAY 2</span>
<div class="block-text">
<p>8:00 AM - BREAKFAST</p>
<p>9:00 AM - SWAGS AND PHOTOS</p>
<p>11:00 AM - WORKSHOP</p>
<p>12:30 PM - LUNCH</p>
<p>2:00 PM - PRESENTATIOSAND CLOSING CEREMONY</p>
</div>
</div> -->
</li>
</ul>
</div>
</div>
<!--End row -->
</div>
<!--End container -->
</section>
<!--End schedule section-->
<!--Counter section-->
<!--End counter section-->
<!--Tickest section-->
<section id="prizes" class="tickets pt-120 pb-120">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-130 text-center">
<h1 class="title">Event Prizes</h1>
<!-- <p class="title-lead mt-10">We have a Total Prize Pool of 30,000 Rupees.<br> Come join the
world’s influencers and get answers. </p> -->
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div class="container">
<!--Row-->
<div class="row vertical-align tickets">
<div class="col-sm-4 ">
<h3 class="sub-title-0 mb-20"><span class="gradient-text">Important</span><br>
</h3>
<div class="review-slider flexslider">
<ul class="slides">
<li>
<blockquote>Teams can be of 1-4 Members</blockquote>
</li>
<li>
<blockquote>You Have to Register Online through Devfolio</blockquote>
</li>
</ul>
<!-- Register with Devfolio -->
<a href="https://hackbeats.devfolio.co/" target="_blank">
<div class="apply-button" data-hackathon-slug="hackbeats"
data-button-theme="dark-inverted" style="height: 44px; width: 312px"></div>
</a>
</div>
</div>
<div class="col-sm-8 ">
<div class="col-sm-6">
<ul class="block-tickets active">
<li>
<ul class="block-ticket active">
<li class="block-price"><span class="price"><span class="cur">$</span>350</span>
</li>
<li>Form Polygon</li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="block-tickets">
<li>
<ul class="block-ticket ">
<li class="block-price"><span class="price"><span class="cur">$</span>850</span>
</li>
<li>From Solana</li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="block-tickets">
<li>
<ul class="block-ticket ">
<!-- <li class="block-price">Gifts from<span class="aca">Balsamiq</span></li> -->
<li class="block-price"><span class="price"><span class="cur">$</span>250</span>
</li>
<li>From Filecoin</li>
</ul>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="block-tickets">
<li>
<ul class="block-ticket ">
<li class="block-price"><span class="price"><span class="cur">$</span>50</span>
</li>
<li>From Replit</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
</section>
<!--End register section-->
<!--Sponsor section-->
<section class="sponser pt-90 pb-90 brd-bottom">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center ">
<h1 class="title">Our Sponsors </h1>
<p class="title-lead mt-10 mb-20">For further info about sponsoring feel free to get in touch
with us</p>
<a href="https://drive.google.com/file/d/1gvC2DHJRs6elEU6qMGUjqXjWak1mtyXE/view?usp=share_link"
class="but mt-30"> Download Our Sponsorship Brochure Here</a>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div id="sponsors" class="container">
<!--Row-->
<div class="row">
<div class="vertical-center">
<div class="block-sponsor">
<a href="https://polygon.technology/"><img src="img/sponsors/Polygon_Logo-White@2x.png"
alt="polygon logo"></a>
<span><strong>Title Sponsor</strong></span>
</div>
<div class="block-sponsor">
<a href="https://www.digitalocean.com/"><img src="https://consent.trustarc.com/v2/asset/20:55:23.714y33gof_DO_Logo-Blue.png"
alt="digital ocean logo"></a>
<span><strong>Silver Sponsor</strong></span>
</div>
</div>
</div>
<div id="sponsors2" class="container">
<div class="row">
<div class="vertical-center">
<div class="block-sponsor">
<a href="https://devfolio.co/"><img src="img/devfolio.png" height="1000" width="410"
alt=""></a>
<span><strong>Platform Sponsor</strong></span>
</div>
</div>
</div>
<div class="row">
<div class="vertical-center">
<div class="block-sponsor">
<a href="https://solana.com "><img src="img/sponsors/Solana-Dark.png" alt="Solana"></a>
<!-- <span><strong>Sticker Partner</strong></span> -->
</div>
<div class="block-sponsor">
<a href="https://filecoin.io "><img src="img/sponsors/Filecoin.png" alt="filecoin"></a>
</div>
<div class="block-sponsor">
<a href="https://replit.com "><img src="img/sponsors/Replit-Dark-Background.png"
alt="Replit"></a>
</div>
</div>
</div>
<div class="row">
<div class="vertical-center">
<div class="block-sponsor">
<a href="https://www.taskade.com/"><img
src="https://devfolio-prod.s3.ap-south-1.amazonaws.com/hackathons/8f42ce5afce54304b94ff53dd764a3a5/sponsors/6a37ad3e541648cbb9853825151647c4/970.png"
alt="taskade"></a>
</div>
<div class="block-sponsor">
<a href="https://gen.xyz/"><img
src="https://devfolio-prod.s3.ap-south-1.amazonaws.com/hackathons/8f42ce5afce54304b94ff53dd764a3a5/sponsors/03f9608613544a7bb1f1b22527c69bb6/852.png"
alt="xyz logo"></a>
</div>
<div class="block-sponsor">
<a href="https://fueler.io/"><img
src="https://devfolio-prod.s3.ap-south-1.amazonaws.com/hackathons/8f42ce5afce54304b94ff53dd764a3a5/sponsors/f0e89b89bf4b49d483e77d6f576ca579/403.png"
alt="taskade"></a>
</div>
</div>
</div>
</div>
<!--End container-->
</section>
<!--Contact section-->
<!--End contact section-->
<!--Accom section-->
</section>
<!--End register section-->
<!--Sponsor section-->
<section class="sponser pt-100 pb-100">
<!--Container-->
<div class="container">
<!--Row-->
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center ">
<h1 class="title">Community Partners</h1>
<p class="title-lead mt-10 mb-20">The BackBone of the Whole Event</p>
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center ">
<a href="https://forms.gle/ATGHttuwChtJXG3D6" class="but mt-30"> Partner With Us </a>
</div>
</div>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
<!--Container-->
<div id="sponsors" class="container clubs">
<!--Row-->
<div class="row">
<div class="col-sm-12 text-center">
<!-- GDSC Camellia Institute of Technology -->
<div class="col-md-2 col-sm-2 ">
<div class="block-club">
<img src="https://cdn.statically.io/gh/devfestkolkata2022/assets/main/community/GDSC_Camellia_Institute_of_Technology.png"
height="200" width="410" alt="">
</div>
</div>
<!-- GDSC _St_Xavier_s_College_ -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/devfestkolkata2022/assets/main/community/GDSC_St_Xavier_s_College_Kolkata.png"
height="100" width="410" alt="">
</div>
</div>
<!-- GDSC Aliah university -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/devfestkolkata2022/assets/main/community/GDSC_Aliah.png"
height="100" width="410" alt="">
</div>
</div>
<!-- GDSC BP Podder -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/devfestkolkata2022/assets/main/community/GDSC_BP_Poddar.png"
height="100" width="410" alt="">
</div>
</div>
<!--GDSC CIEM -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/devfestkolkata2022/assets/main/community/GDSC_CIEM.png"
height="100" width="410" alt="">
</div>
</div>
<!--GDSC IEM -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/devfestkolkata2022/assets/main/community/GDSC_Institute_of_Engineering_and_Management.png"
height="100" width="410" alt="">
</div>
</div>
</div>
</div>
<!--End row-->
<!-- Community Partner start Row 2 -->
<div class="row">
<div class="col-sm-12 text-center">
<!-- GDSC Cooch Bihar Govt College Of engineering -->
<div class="col-md-2 col-sm-2 ">
<div class="block-club">
<img src="https://cdn.statically.io/gh/hackbeats/hackbeats-greentech-assets/78fc94e1/GDSC%20Coochbehar%20Government%20Engg.%20College%20Vertical%20color.png"
height="200" width="410" alt="">
</div>
</div>
<!-- GDSC PCCOE -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/hackbeats/hackbeats-greentech-assets/013efc85/GDSC%20PCCOE%20Vertical%20color.png"
height="100" width="410" alt="">
</div>
</div>
<!-- GDSC Jaipur Govt College Of Engineering -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/hackbeats/hackbeats-greentech-assets/78fc94e1/GDSC%20Jaipur%20Engineering%20College%20and%20Research%20Centre%20%20vertical%20color%20-%20Ayushi%20George.png"
height="100" width="410" alt="">
</div>
</div>
<!--GDSC Providence College of Engineering and School of Business -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/hackbeats/hackbeats-greentech-assets/78fc94e1/GDSC%20Providence%20College%20of%20Engineering%20and%20School%20of%20Business%20%20Vertical%20color%20-%20Joel%20Biju.png"
height="100" width="410" alt="">
</div>
</div>
<!--GDSC SNU -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/hackbeats/hackbeats-greentech-assets/b27d7726/GDSC%20Sister%20Nivedita%20University%20%20Vertical%20color.png"
height="100" width="410" alt="">
</div>
</div>
<!--GDSC YCCE -->
<div class="col-md-2 col-sm-2">
<div class="block-club ">
<img src="https://cdn.statically.io/gh/hackbeats/hackbeats-greentech-assets/6b87d7d0/GDSC%20Yashwantrao%20Chavan%20College%20Of%20%20Engineering%20%20Vertical%20color.png"
height="100" width="410" alt="">
</div>
</div>
</div>
</div>
<!--End row-->
</div>
<!--End container-->
</section>
<!-- Calendly badge widget begin -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<script
type="text/javascript">window.onload = function () { Calendly.initBadgeWidget({ url: 'https://calendly.com/hackbeatsorg/30min', text: 'Schedule time with us ', color: '#0047ff', textColor: '#ffffff', branding: true }); }</script>
<!-- Calendly badge widget end -->
<!--End accom section-->
<!--Faq section-->
<footer class="pt-120 bg-dark">
<div class="bottom-footer bg-black pt-50 pb-50">
<!--Container-->
<div class="container ">
<div class="row">
<div class="col-md-6 ">
<ul class="block-legal">
<li><span><a class="gradient-text scroll">MAIL ID : hackbeatsorg@gmail.com</a></span>
</li>
<li><span><a class="gradient-text scroll" href="https://hackbeatsorg.bio.link/">Contact
us</a></span></li>
<li><span><a class="gradient-text scroll " href="https://devfolio.co/code-of-conduct"
target="_blank">Code of Conduct</a></span></li>
</ul>
</div>
</div>
</div>