-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.html
More file actions
996 lines (845 loc) · 51.9 KB
/
main.html
File metadata and controls
996 lines (845 loc) · 51.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<!-- <meta name="port" content="width=device-width, initial-scale=1.0"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> -->
<link rel="icon" type="image/x-icon" href="/img/favicon2.ico">
<!-- <link rel="stylesheet" href="hackathon.css"> -->
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"> -->
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet">
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> -->
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
<!-- <link rel=“stylesheet” href=“https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css”>
<link rel=“stylesheet” href=“https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css”
integrity=“sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l” crossorigin=“anonymous”> -->
<title>
KARMAKSHETRA
</title>
</head>
<body>
<main class="first-page">
<nav class="nav flex flex-wrap fixed w-full top-0 items-center justify-between px-4">
<div class="flex flex-no-shrink items-center mr-6 py-3 text-grey-darkest">
<img src="/img/kar.png">
<span class="font-semibold text-2xl md:text-xl lg:text-2xl text-gray-200 tracking-tight karmakshetra">Karmakshetra</span>
</div>
<input class="menu-btn hidden" type="checkbox" id="menu-btn">
<label class="menu-icon block cursor-pointer md:hidden px-2 py-4 relative select-none" for="menu-btn">
<span class="navicon bg-grey-darkest flex items-center relative"></span>
</label>
<ul class="menu border-b md:border-none flex justify-end items-center list-reset m-0 w-full md:w-auto md:text-sm pr-3 xl:pr-16 xl:space-x-6 ">
<li class="border-t md:border-none">
<a href="#home"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500">Home</a>
</li>
<li class="border-t md:border-none">
<a href="#about"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">About</a>
</li>
<li class="border-t md:border-none">
<a href="#venues"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">Venue</a>
</li>
<li class="border-t md:border-none">
<a href="#themes"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">Themes</a>
</li>
<li class="border-t md:border-none">
<a href="#prizes"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">Prizes</a>
</li>
<li class="border-t md:border-none">
<a href="#sponsors"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">Sponsors</a>
</li>
<li class=" hidden md:block border-t md:border-none">
<div
class="dropdown block md:inline-block px-4 py-5 no-underline text-yellow-100 hover:text-yellow-500">
<button class="dropbtn">More</button>
<div class="dropdown-content">
<a href="#FAQ">FAQs</a>
<a href="mentor.html">Mentors</a>
<a href="coc.html" target="_blank">Code of Conduct</a>
</div>
</div>
</li>
<!-- hidden for big screens -->
<li class="md:hidden border-t md:border-none">
<a href="#"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">Mentors</a>
</li>
<li class="md:hidden border-t md:border-none">
<a href="coc.html"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">Code of Conduct</a>
</li>
<li class="md:hidden border-t md:border-none">
<a href="#FAQ"
class="block md:inline-block px-4 py-3 no-underline text-yellow-100 hover:text-yellow-500 ">FAQs</a>
</li>
</ul>
</nav>
<section id="home" class=" hero w-full text-white p-2 sm:p-5">
<div class="flex flex-col justify-center items-center md:flex-row m-4">
<div class="md:w-1/2 h-screen flex flex-col justify-center items-center m-4 ">
<div class="self-start p-4">
<h6 class="Bytemonk-present ">Bytemonk presents...</h6>
</div>
<h3 class="karmakshetra-body text-center text-5xl
sm:text-6xl font-bold text-yellow-400">Karmakshetra</h3>
<p class="text-white mt-4 hackathon-descrip">
The Hackathon is not just an event; it's a journey of exploration, innovation, and
camaraderie.
Join us as we embark on this exciting adventure to shape the future of technology. Together,
let's turn ideas into reality!
</p>
<div class="mt-6">
<div class="apply-button" data-hackathon-slug="karmakshetra" data-button-theme="light"
style="height: 44px; width: 312px">Apply with Devfolio</div>
</div>
</div>
<div class="md:w-1/2">
<img class="hackaton-gif md:w-full w-82 rounded" alt="hero" src="/img/hackathon.gif">
</div>
</div>
<marquee class="text-yellow-300 " behavior="" direction="" scrollamount="10">If the Devfolio button is not appearing, please try refreshing your browser</marquee>
</section>
</main>
<section id="about" class="w-full flex flex-col justify-center items-center">
<div class="container p-3 md:p-5 w-full h-full flex flex-col justify-center items-center">
<h1 class="about-heading text-5xl sm:text-7xl font-extrabold text-red-400 drop-shadow-lg shadow-black">About</h1>
<div class="grid grid-flow-row md:grid-flow-col">
<div
class=" rounded-lg flex flex-col flex-wrap m-4 justify-center text-center content-center aboutGif ">
<img class="h-fit w-full"
src="https://www.webdecorum.com/wp-content/uploads/2021/12/web-solutions-gif.gif">
</div>
<div
class=" rounded-lg flex flex-col flex-wrap justify-center text-center content-center text-base text-justify md:col-span-2 about-descrip p-4">
Welcome to GCECT ByteMonk Hackathon: Karmaskshetra! Join us in an exciting journey of innovation
and problem-solving. Whether you're an experienced coder or a newcomer, this hackathon is your
chance to make a difference. Choose from various challenges, collaborate with like-minded
individuals, and transform ideas into reality. With mentors, resources, and a platform to
showcase your skills, Karmaskshetra is your coding adventure. Embrace the ever-evolving digital
world, tackle cybersecurity, AI, healthcare, and more. Join us in shaping a better future, one
line of code at a time. Let's code for a brighter tomorrow at Karmaskshetra!
</div>
</div>
</div>
</section>
<section class=" w-full flex justify-center items-center">
<div class="container p-5 ">
<div id="venues" class="flex flex-col justify-center items-center w-full h-full mb-20">
<div class="flex flex-col justify-center items-center ">
<h1 class="sm:text-4xl text-3xl font-medium title-font mb-2 venue-heading" id="ven">
Venue</h1>
<p class="lg:w-2/3 text-white" id="abtp">Government College Of
Engineering and Ceramic Technology(GCECT)</p>
<p id="abtp" class="text-white">73, Abinash Chandra Banerjee Ln, Subhas Sarobar Park, Phool
Bagan, Beleghata,
Kolkata,
West Bengal 700010</p>
</div>
<div class="container flex items-center justify-center m-4 w-full">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3684.3797156162013!2d88.38912937436918!3d22.56489728325442!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a02767d397506af%3A0x2b352e7f5c0bdb12!2sGovernment%20College%20of%20Engineering%20And%20Ceramic%20Technology!5e0!3m2!1sen!2sin!4v1693817890837!5m2!1sen!2sin"
class="lg:w-1/2 w-full" height="380" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</div>
</section>
<section id="themes" class="themes p-1 md:p-10 flex items-center justify-center">
<div class="flex flex-col text-center w-full my-20 justify-center items-center">
<h1 class="sm:text-4xl text-3xl font-medium title-font mb-10 text-red-400 theme-heading">Themes
</h1>
<div class="flex flex-wrap theme-container justify-center items-center mt-2">
<div class="card flex">
<div class="image">
<img src="/img/Environment.gif">
</div>
<div class="content">
<h3>Environment</h3>
<p>Be a hero.Save the world!</p>
</div>
<h3 class="themes-card-heading">Environment</h3>
</div>
<div class="card">
<div class="image">
<img href="#" src="/img/Education.gif">
</div>
<div class="content">
<h3>Education</h3>
<p>Help spread the light of knowledge </p>
</div>
<h3 class="themes-card-heading">Education</h3>
</div>
<div class="card">
<div class="image">
<img src="/img/Open Innovation.gif">
</div>
<div class="content">
<h3>Open Innovation</h3>
<p>No boundaries here. Let your innovative mind run free</p>
</div>
<h3 class="themes-card-heading">Open Innovation</h3>
</div>
<div class="card">
<div class="image">
<img src="/img/Health Care.gif">
</div>
<div class="content">
<h3>Medical and Healthcare:</h3>
<p>Tech and medicine can go hand in hand!</p>
</div>
<h3 class="themes-card-heading">Healthcare </h3>
</div>
<div class="card">
<div class="image">
<img src="/img/Peace.gif">
</div>
<div class="content">
<h3>Peace and Justice:</h3>
<p>World peace is achievable, through you!
</p>
</div>
<h3 class="themes-card-heading">Peace and Justice</h3>
</div>
<div class="card">
<div class="image">
<img src="/img/hunger.gif">
</div>
<div class="content">
<h3>Reduce Hunger</h3>
<p>Solve the problem at the root of all others....poverty and hunger!</p>
</div>
<h3 class="themes-card-heading">Reduce Hunger</h3>
</div>
</div>
</div>
</section>
<section id="prizes" class="flex flex-col justify-center ">
<h1 class="prize-heading sm:text-4xl text-3xl font-medium title-font my-10 md:my-15 text-center">Prizes</h1>
<div class="p-5">
<div class="row flex flex-wrap justify-center items-center">
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--1">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--1">1st Runner Up!</span>
</h4>
<div class="card__details">
<ul>
</ul>
</div>
</div>
<div class="card__side card__side--back card__side--back-1">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">1st Runner Up!</p>
<p class="card__price-value">6000/-</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--2">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--2">Winner!</span>
</h4>
</div>
<div class="card__side card__side--back card__side--back-2">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">Winner!</p>
<p class="card__price-value">10000/-</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--3">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--3">2nd Runner Up!</span>
</h4>
<!-- <div class="card__details">
<ul>
</ul>
</div> -->
</div>
<div class="card__side card__side--back card__side--back-3">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">2nd Runner Up!</p>
<p class="card__price-value">4000/-</p>
</div>
<!-- <a href="#" class="btn btn--white">Buy now!</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-600 ">
<div class="container px-3 py-02 mx-auto my-5">
<div id="timeline" class="flex flex-col text-center w-full mb-04">
<h1 class="sm:text-4xl text-3xl font-larger title-font my-5 " id="tim">Timeline</h1>
<section class="text-gray-600 body-font">
<div class="container px-5 mx-auto flex flex-wrap">
<div class="flex flex-wrap w-full">
<div class="lg:w-2/5 md:w-1/2 md:pr-10 md:py-2">
<div class="flex relative pb-12">
<div class="h-full w-10 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 inline-flex items-center justify-center text-white relative z-10">
<svg fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" class="w-5 h-5" Box="0 0 24 24">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>
</svg>
</div>
<div class="flex-grow pl-4">
<h2 id="h2">
8 AM</h2>
<p class="leading-relaxed">Let the Hackathon begin!</p>
</div>
</div>
<div class="flex relative pb-12">
<div class="h-full w-10 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 inline-flex items-center justify-center text-white relative z-10">
<svg fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" class="w-5 h-5" Box="0 0 24 24">
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
</div>
<div class="flex-grow pl-4">
<h2 class="font-medium title-font text-sm mb-1 tracking-wider">
1 PM</h2>
<p class="leading-relaxed">Lunch Time.</p>
</div>
</div>
<div class="flex relative pb-12">
<div class="h-full w-10 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 inline-flex items-center justify-center text-white relative z-10">
<svg fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" class="w-5 h-5" Box="0 0 24 24">
<circle cx="12" cy="5" r="3"></circle>
<path d="M12 22V8M5 12H2a10 10 0 0020 0h-3"></path>
</svg>
</div>
<div class="flex-grow pl-4">
<h2 class="font-medium title-font text-sm mb-1 tracking-wider">
5 PM</h2>
<p class="leading-relaxed">Snacks and Refreshments
</p>
</div>
</div>
<div class="flex relative pb-12">
<div class="h-full w-10 absolute inset-0 flex items-center justify-center">
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 inline-flex items-center justify-center text-white relative z-10">
<svg fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" class="w-5 h-5" Box="0 0 24 24">
<path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</div>
<div class="flex-grow pl-4">
<h2 class="font-medium title-font text-sm mb-1 tracking-wider">
6 PM </h2>
<p class="leading-relaxed">Hackathon ends</p>
</div>
</div>
<div class="flex relative">
<div
class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 inline-flex items-center justify-center text-white relative z-10">
<svg fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" class="w-5 h-5" Box="0 0 24 24">
<path d="M22 11.08V12a10 10 0 11-5.93-9.14"></path>
<path d="M22 4L12 14.01l-3-3"></path>
</svg>
</div>
<div class="flex-grow pl-4">
<h2 class="font-medium title-font text-sm text-black-600 tracking-wider">
6 PM to 7:30 PM</h2>
<p class="leading-relaxed">Evaluation of your projects
</p>
</div>
<div class="flex-grow pl-4">
<h2 class="font-medium title-font text-sm text-black-600 tracking-wider">
8th October 2023</h2>
<p class="leading-relaxed">Winner Announcements
</p>
</div>
</div>
</div>
<img class="lg:w-3/5 md:w-1/2 object-cover object-center rounded-lg md:mt-0 my-12 "
src="https://plus.unsplash.com/premium_photo-1682140999442-e9e2a5f55be6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NjV8fGNvZGluZ3xlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60"
alt="step">
</div>
</div>
</section>
</div>
</div>
</section>
<!-- <section id="mentor ">
<h1 class="mentor-heading text-red-400">Mentor</h1>
</section> -->
<section id="sponsors" class=" flex flex-col justify-center items-center ">
<div class="">
<div class="gold-sponsors flex flex-col justify-center items-center p-2">
<h1 class="text-yellow-400 text-3xl p-4">Gold Sponsors</h1>
<div class="w-60 m-4">
<img src="/img/Devfolio_Logo-White.png" alt="DEVFOLIO LOGO">
</div>
</div>
<div class="silver-sponsors flex flex-col justify-center items-center p-2">
<h1 class="text-yellow-400 text-3xl p-4">Silver Sponsors</h1>
<div class="w-60 m-4">
<img src="/img/square-white-logo-with-bottom-text-black-red.png" alt="">
</div>
</div>
<div class="bronze-sponsors flex flex-col justify-center items-center p-5">
<h1 class="text-yellow-400 text-3xl p-5">Bronze Sponsors</h1>
<div class="flex flex-wrap justify-center items-center space-x-10">
<div class="w-60 m-4"><img src="/img/Polygon_Logo-White.png" alt="POLYGON LOGO"></div>
<div class="w-60 m-4">
<img src="/img/Replit-Dark-Background.png" alt="REPLIT LOGO">
</div>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section id="FAQ">
<div class="max-w-[85rem] px-4 py-10 sm:px-6 lg:px-8 lg:py-14 mx-auto">
<div class="max-w-2xl mx-auto mb-10 lg:mb-14">
<h2 class="text-2xl font-bold md:text-4xl md:leading-tight dark:text-red-600">Have a question? Our FAQs
will
solve most of your doubts and queries.
</h2>
</div>
<div class="max-w-2xl mx-auto divide-y divide-gray-200 dark:divide-gray-700">
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
What is a Hackathon?
</h3>
<p class="mt-1 text-gray-500">
It is a common place where developers, designers and coders from all type of backgrounds
come together and collaborate to solve a set of different problem statements and compete
for
cash prizes.
</p>
</div>
</div>
</div>
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
What is Karmakshetra?
</h3>
<p class="mt-1 text-gray-500">
It is the Hackathon of The Government College of Engineering and Ceramic
Technology(GCECT),
spanning for 10 hours, during KarmaTek(Tech-Fest of GCECT) on 7th October, starting
from 8
AM upto 8 PM. There will be exciting Cash prizes, Snacks, Coffee, and most importantly,
Lots
of Coding!!
</p>
</div>
</div>
</div>
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
Why should I participate?
</h3>
<p class="mt-1 text-gray-500">
It encourages people to develop technical as well as non-technical skills, such as
project
management, presentation skills, and problem-solving.Further it allows the teams to
fight
for Cash-Prizes which serve a Big Motivation!
</p>
</div>
</div>
</div>
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
What is the cost of participation in Karmakshetra?
</h3>
<p class="mt-1 text-gray-500">
It costs nothing to participate in Karmakhetra! Just come, Code, have fun!! There will
be
Meals, Snacks, Beverages, many fun events, prizes, and much more on the day of Hackathon
which is on us!
</p>
</div>
</div>
</div>
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
What is the maximum/minimum team size?
</h3>
<p class="mt-1 text-gray-500">
In order to maintain balance, we are encouraging people to make teams of minimum 2 and a
maximum of 4 members..
</p>
</div>
</div>
</div>
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
Who can participate in Karmakshetra?
</h3>
<p class="mt-1 text-gray-500">
We welcome students in college, school to participate in the Hackathon. People
interested in
making innovative projects, and those interested in community building can join to have
a
fun time.
</p>
</div>
</div>
</div>
<div class="py-8 first:pt-0 last:pb-0">
<div class="flex gap-x-5">
<svg class="flex-shrink-0 mt-1 w-6 h-6 text-gray-500" xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" Box="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" />
<path
d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z" />
</svg>
<div>
<h3 class="md:text-lg font-semibold text-red-800 dark:text-red-500">
Where do I reach out if I have more questions?
</h3>
<p class="mt-1 text-gray-500">
In case of any further questions, you can join our Discord Server
<a href="https://discord.gg/NMpbBxTQhC" target="_blank" rel="noopener noreferrer">(https://discord.gg/NMpbBxTQhC)</a>, you can refer to the 'Contact Us' section of this
website,or email us at karmakshetra@gcect.org.in!
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End FAQ -->
<section class="Team">
<div class="flex flex-col items-center justify-center">
<h1 class="h1-text text-3xl py-6 organiser-heading">
<i class="fa fa-users" aria-hidden="true"></i> Our Organisers
</h1>
<div class="flex flex-col justify-center items-center">
<div class="container flex flex-wrap justify-center items-center">
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/IMG_20230618_085917943 (1).jpg">
<strong>Alapan Das</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/alapandas3"><i class="fa fa-linkedin"
aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="top">
<div>
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div>
</div>
</div>
<div class="content">
<img src="/img/1678704223863.jpg">
<strong>Sweta Rajak</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/sweta-rajak"><i class="fa fa-linkedin"
aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/IMG_20230506_211001_159.jpg">
<strong>Yashwant kumar</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/yashwant-kumar-091827235"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/aser.jpg">
<strong>Saikat Sundar Das</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/saikat-sundar-das/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</div>
<div class="container flex flex-wrap justify-center items-center">
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/arghyadip.jpeg">
<strong>Arghyadip Dhara</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/arghyadip-dhara-68a3b51b7/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/aniruddha.jpg" alt="Aniruddha">
<strong>Aniruddha Mukherjee</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/aniruddha-mukherjee-140840232/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/abul.jpeg">
<strong>Sk Abul Aman</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/sk-abul-aman-449717240/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="top">
<i class="fa fa-check-circle" aria-hidden="true"></i>
</div>
<div class="content">
<img src="/img/Jayanta.jpeg">
<strong>Jayanta Mardi</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/mardijm/"><i class="fa fa-linkedin"
aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
<br>
<br>
<br>
<div class="container flex flex-col items-center justify-center">
<h1 class="text-4xl mb-4 our-team">Our Team:</h1>
<div class="flex flex-wrap justify-center items-center">
<div class="box">
<div class="top-bar"></div>
<div class="content">
<img src="./img/susmita.jpeg">
<strong>Susmita Barua</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/susmita-barua-a9692421a/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="content">
<img src="./img/debojit.jpg">
<strong>Debojit Das</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/debojitdas2003/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="content">
<img src="./img/Monami.jpeg">
<strong>Monami Chakraborty</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/monami-chakraborty-cfa/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
<div class="box">
<div class="top-bar"></div>
<div class="content">
<img src="./img/arjo.jpeg">
<strong>Arjo Ghosh</strong>
</div>
<div class="btn">
<a target="_blank" href="https://www.linkedin.com/in/arjo-ghosh-23bb72254/"><i
class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Main footer -->
<footer class="text-slate-400 w-full">
<div class="p-3 flex flex-col text-sm border-t border-slate-900 bg-slate-800 w-full" id="cnt">
<div class=" py-6 ">
<h1 class="sm:text-4xl text-3xl font-medium text-red-600 px-4">Contact Us:</h1>
</div>
<div class="flex w-full ">
<div class="flex justify-between w-2/3 flex-wrap-reverse">
<div class="flex flex-col space-y-3 ml-12 ">
<div class="flex flex-col">
<h3 class="font-semibold text-gray-300"> Alapan Das </h3>
<a href="mailto:alapandas@gcect.org.in">alapandas@gcect.org.in</a>
</div>
<div class="flex flex-col">
<h3 class="font-semibold text-gray-300">Saikat Sundar Das </h3>
<a href="mailto:saikatsundardas@gcect.org.in">saikatsundardas@gcect.org.in</a>
</div>
<div class="flex flex-col ">
<h3 class="font-semibold text-gray-300"> Sweta Rajak </h3>
<a href="mailto:swetarajak@gcect.org.in">swetarajak@gcect.org.in</a>
</div>
<div class="flex flex-col ">
<h3 class="font-semibold text-gray-300"> Yashwant Kumar </h3>
<a href="mailto:yashwantkumar@gcect.org.in">yashwantkumar@gcect.org.in</a>
</div>
<div class="flex flex-col ">
<h3 class="font-semibold text-gray-300"> Arghyadip Dhara </h3>
<a href="mailto:arghyadipdhara@gcect.org.in">arghyadipdhara@gcect.org.in</a>
</div>
</div>
<div class="self-center justify-self-end text-xl m-10">
<a href="mailto:karmaskshetra@gcect.org.in">gcect.technologyclub@gmail.com</a>
</div>
</div>
<div class="flex flex-col text-right sm:self-end space-y-4 mr-8 w-1/3">
<a href="https://www.facebook.com/profile.php?id=100076889941837"><iconify-icon
class="hover:scale-150 duration-150 " width="32" icon="logos:facebook"></iconify-icon></a>
<a href="https://twitter.com/gcect_tech"><iconify-icon class="hover:scale-150 duration-150 "
width="32" icon="skill-icons:twitter"></iconify-icon></a>
<a href="https://instagram.com/bytemonk"><iconify-icon class="hover:scale-150 duration-150 "
width="32" icon="skill-icons:instagram"></iconify-icon></a>
<a href="https://www.linkedin.com/in/byte-monk-17241a222"><iconify-icon
class="hover:scale-150 duration-150 " width="32"
icon="skill-icons:linkedin"></iconify-icon></a>
<a href="https://discord.gg/NMpbBxTQhC"><iconify-icon class="hover:scale-150 duration-150 "
width="32" icon="skill-icons:discord"></iconify-icon></a>
</div>
</div>
</div>
<div class="py-4 text-sm border-t border-slate-900 bg-slate-700">
<div class="container px-6 mx-auto">
<div class="grid grid-cols-4 gap-6 md:grid-cols-8 lg:grid-cols-12">
<div class="col-span-2 md:col-span-4 lg:col-span-6">Copyright @Bytemonk
</div>
</div>
</div>
</div>
</footer>
<!-- End Dark Theme Footer -->
</body>
</html>