forked from DSC-ChitkaraUniv/octahacks4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1200 lines (1188 loc) · 43.7 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" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#5f676e"
/>
<meta
name="description"
content="Octhacks 4.0 - By Google Developer Students Club, Chitkara University"
/>
<meta
name="keywords"
content="Octahacks 4.0, Octahacks, GDSC, GDSC CUIET, Google Developer Students Club, Google Developer Student Club Chitkara University, Chitkara, Chitkara University, Octahacks Chitkara, Octahacks GDSC CUIET, Octhacks-4.0"
/>
<meta name="language" content="English" />
<meta
name="author"
content="Google Developer Students Club, Chitkara University"
/>
<!-- Mainfest File & Favicon -->
<link rel="icon" href="./assets/icons/favicon.ico" />
<!-- <link rel="apple-touch-icon" href="./assets/icons/apple-touch-icon.png"> -->
<link rel="manifest" href="./manifest.json" />
<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=Poppins&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.2.0/tailwind.min.css"> -->
<link rel="stylesheet" href="static/css/style.css" />
<link rel="stylesheet" href="static/css/logos.css" />
<link rel="stylesheet" href="static/css/hover.css" />
<link rel="stylesheet" href="static/css/faq.css" />
<link rel="stylesheet" href="static/css/prizeFooter.css" />
<link rel="stylesheet" href="static/css/sponsers.css" />
<title>Octahacks 4.0</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-8HTM3B0KR7"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-8HTM3B0KR7");
</script>
</head>
<body class="body" oncontextmenu="return false;">
<div class="preloader">
<div class="word">OCTAHACKS 4.0</div>
<div class="overlay"></div>
</div>
<nav id="nav_bar">
<div class="octahacks_logo">
<img src="./assets/media/octahackslogo_svg.svg" alt="logo" />
</div>
<div class="nav_links">
<a href="#landing">Home</a>
<a href="#tracks">Tracks</a>
<a href="#prizes">Prizes</a>
<a href="#sponsors">Sponsors</a>
<a href="#footer">Contact</a>
</div>
<div class="gdsc_logo">
<img src="./assets/media/GDSClogo.png" alt="gdsc_cuiet" />
</div>
</nav>
<nav id="nav_bar_mobile">
<div class="octahacks_logo">
<img src="./assets/media/octahcks_logo.png" alt="logo" />
</div>
<button
aria-label="Menu"
id="hamburger"
class="hamburger"
onclick="toggleMenubar(this)"
>
<div class="ham-box">
<div class="ham-box-inner"></div>
</div>
</button>
</nav>
<aside
aria-hidden="true"
tabindex="-1"
class="menu_StyledSidebar menubar"
id="aside"
>
<nav>
<ul>
<li><a href="#landing" class="about_high">Home</a></li>
<li><a href="#tracks">Tracks</a></li>
<li><a href="#prizes">Prizes</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#footer">Contact</a></li>
</ul>
<img
class="gdsc_logo"
src="./assets/media/GDSClogo.png"
alt="gdsc_cuiet"
/>
</nav>
</aside>
<div id="content">
<div id="landing_wrap">
<section id="landing">
<div class="left">
<h1 class="title4">OctaHacks 4.0</h1>
<h3 class="tagline">"TECH IT EASY"</h3>
<div class="calendar">
<div class="top">
<span>November 2021</span>
<div>
<span class="material-icons-outlined"> chevron_left </span>
<span class="material-icons-outlined"> chevron_right </span>
</div>
</div>
<div class="middle">
<span>
<span>10</span>
<span>11</span>
<span>12</span>
<span>13</span>
<span>14</span>
</span>
<span>15</span>
</div>
<div class="bottom">Prepare to be amazed</div>
</div>
<!-- <div class="buttons">
<div
class="apply-button"
data-hackathon-slug="octahacks4"
data-button-theme="light"
style="height: 44px; width: 312px"
></div>
<a href="https://discord.gg/DJzfRCSqwe">
<div class="discord_button">
<img
src="./assets/media/discord_inner_logo.png"
alt="discord"
/>
</div>
</a>
<a href="https://discord.gg/DJzfRCSqwe">
<div class="discord_button_mobile">
<img
src="./assets/media/discord_mobile_logo.png"
alt="discord"
/>
</div>
</a>
</div> -->
<span class="wrapevent">
Octahacks 4 was a Success. See you next year with Octahacks
5</span
>
</div>
<div class="right landing_vector">
<img src="./assets/media/Home_Banner_1.png" alt="Octahacks 4.0" />
</div>
</section>
<section id="ticker">
<div class="ticker_wrap">
<img
src="./assets/Sponsors/past/1pass.png"
alt="1pass"
style="filter: invert()"
/>
<img
class="jetbrains"
src="./assets/Sponsors/past/jetbrains.png"
alt="jetbrains"
/>
<img src="./assets/Sponsors/past/devfolio.svg" alt="devfolio" />
<img
src="./assets/Sponsors/present/polygon.svg"
alt="polygon"
class="polygon"
/>
<img src="./assets/Sponsors/past/axure.png" alt="axure" />
<img
src="./assets/Sponsors/past/balsamiq.svg"
alt="1passbalsamiq"
/>
<img
src="./assets/Sponsors/past/bugsee.svg"
alt="bugsee"
style="height: 50%"
/>
<img src="./assets/Sponsors/past/cb.png" alt="cb" />
<img src="./assets/Sponsors/past/codechef.svg" alt="codechef" />
<img src="./assets/Sponsors/past/codingNinjas.svg" alt="ninja" />
<img src="./assets/Sponsors/past/streamyard.svg" alt="streamyard" />
</div>
</section>
</div>
<section id="about_us">
<h1>About Us</h1>
<p id="aboutus">
<span class="about_high abouttitle">OctaHacks</span> is the annual
flagship event of <span>GDSC, Chitkara University </span> , where
innovators get an opportunity to merge their creative ideas with their
technical skills to
<span class="about_high">build something exemplary.</span> Expect more
than <span class="about_high">36 hours</span> of inspiring panel
discussions, working and collaborating on futuristic and empowering
tech products,
<span class="about_high">networking opportunities.</span>
</p>
</section>
<section id="tracks">
<h1 id="trackhead">Tracks</h1>
<p>
As the name suggests, Octahacks comprises 8 themes or impact areas to
help <span id="about_high">spark your ideas.</span> Remember that
youʼre welcome to build the prototype with the technologies of your
choice, so feel free to use any technology and think outside the box
too!
</p>
<div id="tracks_wrapper">
<div id="track1" class="track-card">
<div>
<h1>SMART CITY</h1>
<p>
Smart Cities is a space in which developers, entrepreneurs,
designers, professors, researchers and persons interested in
making their city a better place can gather to build in a
collaboratively fashion a solution that makes our city more
efficient and intelligent.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_1.png" alt="smart_city" />
</div>
</div>
<div id="track2" class="track-card">
<div>
<h1>SECURITY</h1>
<p>
Security-related issues are growing. The programs for public
safety lack and also the increased use of automated technologies
is also driving an increase in the advancement of the need for
proper security systems.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_2.png" alt="security" />
</div>
</div>
<div id="track3" class="track-card">
<div>
<h1>FINTECH</h1>
<p>
From mobile payments to internet banking, an increased number of
consumers are adopting fintech solutions today, and therefore
there are a lot of exciting career options in this space.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_3.png" alt="fintech" />
</div>
</div>
<div id="track4" class="track-card">
<div>
<h1>HEALTH</h1>
<p>
The increase in patients has led to the decrease in the relative
number of doctors per patient which results in a vicous cycle
where ignored or delayed diagnostics of an ailment makes the
patient more dependent on doctor's check-up. Some also cannot
afford to visit a doctor.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_4.png" alt="health" />
</div>
</div>
<div id="track5" class="track-card">
<div>
<h1>BUSINESS</h1>
<p>
As technology is evolving, Business are accelerating their
investments in innovation and digital advancements. Today, in
this fast trending world, many innovative ideas have turned into
significant business adventures. Here, we are looking forward to
our next Facebook, Uber or Zomato.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_5.png" alt="business" />
</div>
</div>
<div id="track6" class="track-card">
<div>
<h1>WOMEN SECURITY</h1>
<p>
Everything you know about Women Safety is set to change. From
self-driving cars to ride-hailing to micro-mobility, we are in
the process of completely reinventing how people move. And while
we do know that everything is about to change, we still need to
figure out how.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_6.png" alt="women_security" />
</div>
</div>
<div id="track7" class="track-card">
<div>
<h1>ENVIRONMENT</h1>
<p>
We are advancing in technology at a very rapid rate. But this
development has made our nature suffer. It is considered more
important to expand cities than to save trees.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_7.png" alt="environment" />
</div>
</div>
<div id="track8" class="track-card">
<div>
<h1>EDUCATION</h1>
<p>
A large part of our population is still not able to recieve
proper education due to lack of resources. Education is
important for everyone,but only a few have access to it.
Children of poor families tend to move frequently, which
disrupts their education.
</p>
</div>
<div class="img">
<img src="./assets/media/Tracks_8.png" alt="education" />
</div>
</div>
</div>
</section>
<!-- prizes -->
<section class="prize_section" id="prizes">
<h1 class="title" id="tra">Prizes</h1>
<p class="prize_section_detail">
Just to incentivise your hard work and effort over those 36 hours we
have
<span class="about_high">prizes, cash rewards and more </span> lined
up for the top performers by our generous Sponsors. Swags and goodies
are for everyone but for the ones with the most creative and
innovative projects we have more lined up!!!
</p>
<div class="prize_section_cards">
<div class="prize_section_card wrap-image tilt tilt-logo" data-tilt>
<h2>Winner</h2>
<h1>₹ 15,000 *</h1>
<p>+Goodies worth upto</p>
<p>₹ 1 Lakh</p>
</div>
<div class="prize_section_card tilt tilt-logo" data-tilt>
<!-- <p>Runner Up</p> -->
<h2>Runner Up</h2>
<h1>₹ 10,000 *</h1>
<p>+Goodies worth upto</p>
<p>₹ 75 Thousand</p>
</div>
<div class="prize_section_card tilt tilt-logo" data-tilt>
<!-- <p>Third</p> -->
<h2>Third</h2>
<h1>₹ 5,000 *</h1>
<p>+Goodies worth upto</p>
<p>₹ 30 Thousand</p>
</div>
</div>
<div class="prize_section_cards">
<div class="prize_section_card sponsors tilt tilt-logo" data-tilt>
<div class="sponsors_img">
<img
src="assets/Sponsors/present/tezos.svg"
alt="tezos"
id="tezos"
/>
</div>
<p>
<span class="about_high_2">₹20,000</span>* for best Dapp built on
Tezos.
</p>
<p>
Continuity grant opportunity up to
<span class="about_high_2">5,000 USD</span> for an outstanding
project.
</p>
</div>
<div class="prize_section_card sponsors tilt tilt-logo" data-tilt>
<div class="sponsors_img">
<img src="assets/Sponsors/present/polygon.svg" alt="polygon" />
</div>
<p>
<span class="about_high_1">₹10,000</span> for the best hack built
on Ethereum, or
</p>
<p>
<span class="about_high_1">₹15,000</span> for the best hack built
on Ethereum + Polygon.
</p>
<p style="font-size: small">
Eligibility to apply for internship/full-time roles and seed
funding of up to <span class="about_high_1">5,000 USD </span> for
winners!
</p>
</div>
<div
class="prize_section_card sponsors tilt tilt-logo hovicon effect-8"
data-tilt
>
<div class="sponsors_img">
<img src="assets/Sponsors/present/celo.png" alt="celo" />
</div>
<p>
<span class="about_high_2">₹20,000</span> for best Dapp built on
Celo
</p>
</div>
<div class="prize_section_card sponsors tilt tilt-logo" data-tilt>
<div class="sponsors_img">
<img src="assets/Sponsors/present/filecoin.svg" alt="filecoin" />
</div>
<p>
<span class="about_high_1"> ₹20,000* </span>for best use of IPFS
and/or Filecoin.
</p>
<p>
Microgrants up to <span class="about_high_1">5000 USD</span>, open
grants up to <span class="about_high_1">50,000 USD</span> Learn
more
<a
href="https://github.com/filecoin-project/devgrants/blob/master/README.md"
>
here
</a>
</p>
</div>
</div>
</section>
<section id="judges">
<h1 id="judge_head">Judges</h1>
<div id="judges_wrapper">
<div>
<div class="img">
<img src="./assets/judges/vrijraj.png" id="judge" />
</div>
<div>
<h1>Vrijraj</h1>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>
Organizer, GDG Jalandhar | Google Developers Expert for Firebase
& Web Technologies
</p>
<div class="judge_social_icons">
<i class="fab fa-linkedin"></i>
<i class="fab fa-github"></i>
</div>
</div>
</div>
<div>
<div class="img">
<img src="./assets/judges/r se hai.jpeg" id="judge" />
</div>
<div>
<h1>Rahul Rana</h1>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>
Frontend Lead (L4) at Uber Lead | Ex-Directi (Flock) | Ex-Rivigo | Javascript | React JS | Frontend
</p>
<div class="judge_social_icons">
<a href="https://www.linkedin.com/in/rahul-rana-b713499a/"><i class="fab fa-linkedin"></i></a>
<!-- <i class="fab fa-github"></i> -->
</div>
</div>
</div>
<div>
<div class="img">
<img src="./assets/judges/varsha.png" id="judge" />
</div>
<div>
<h1>Varsha Jaiswal</h1>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>
Organizer at GDG Jalandhar | #IamRemarkable Gold Facilitator | WTM Ambassador
</p>
<div class="judge_social_icons">
<a href="https://www.linkedin.com/in/varshajaiswal/"><i class="fab fa-linkedin"></i></a>
<!-- <i class="fab fa-github"></i> -->
</div>
</div>
</div>
<div>
<div class="img">
<img src="./assets/judges/aprajay.jfif" id="judge" />
</div>
<div>
<h1>Aprajay Verma</h1>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>
Founder GoGurukul
</p>
<div class="judge_social_icons">
<i class="fab fa-linkedin"></i>
<i class="fab fa-github"></i>
</div>
</div>
</div>
<div>
<div class="img">
<img src="./assets/judges/saurabh.png" id="judge" />
</div>
<div>
<h1>Saurabh Thakur</h1>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>
Software Development Engineer at Clarisights
</p>
<div class="judge_social_icons">
<i class="fab fa-linkedin"></i>
<i class="fab fa-github"></i>
</div>
</div>
</div>
</div>
</section>
<section id="mentors">
<h1>Mentors</h1>
<p>To guide you throughout your journey</p>
<div id="mentors_wrapper">
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/abhinav.jpeg" />
</div>
<div id="mentor_detail">
<!-- <h3>Abhay Sharma</h3> -->
<h1>Abhinav Srivastava</h1>
<!-- <p>...</p> -->
<p>Incoming SDE intern at Amazon</p>
</div>
</div>
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/rahul-min.png" />
</div>
<div id="mentor_detail">
<!-- <h3>Anusha B Rao</h3> -->
<h1>Rahul Goyal</h1>
<!-- <p>...</p> -->
<p>Backend Engineer @Smallcase</p>
</div>
</div>
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/priyal.jpeg" />
</div>
<div id="mentor_detail">
<!-- <h3>Ayon Roy</h3> -->
<h1>Priyal Jain</h1>
<p>
Senior Software Engineer @ HotWax Systems
<!-- Community @ Kaggle Days</p> -->
</p>
</div>
</div>
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/abhay.jpeg" />
</div>
<div id="mentor_detail">
<h3>Abhay Sharma</h3>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>Frontend Developer @ smallcase</p>
</div>
</div>
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/srilaasya.png" />
</div>
<div id="mentor_detail">
<h3>Sri Laasya Nutheti</h3>
<!-- <h1>To be unveiled soon</h1> -->
<!-- <p>...</p> -->
<p>Research Intern at MIT, and IIT Madras</p>
</div>
</div>
<!-- <div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/z15.jpg" />
</div>
<div id="mentor_detail">
<h3>Madhur Gupta</h3>
<h1>To be unveiled soon</h1>
<p>...</p>
<p>Android @bim | GSoC'20 @Wikimedia</p>
</div>
</div>
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/x4.jpg" />
</div>
<div id="mentor_detail">
<h3>Nikhil Bansal</h3>
<h1>To be unveiled soon</h1>
<p>...</p>
<p>Android Engineer @Mutual Mobile | Open Source Contributor | Tech Speaker @GDG Hyderabad | Mentor
and Reviewer @Udacity</p>
</div>
</div> -->
<!-- <div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/saurabh.jfif" />
</div>
<div id="mentor_detail">
<h3>Saurabh Thakur</h3>
<h1>To be unveiled soon</h1>
<p>...</p>
<p>SDE @smallcase, GSoC 19 @AOSSIE</p>
</div>
</div>
<div id="mentor_box">
<div id="mentor_img">
<img src="./assets/mentors/siddartha.png" />
</div>
<div id="mentor_detail">
<h3>Sai Siddartha Maram</h3>
<h1>To be unveiled soon</h1>
<p>...</p>
<p>SDE Intern @Invento Robotics</p>
</div>
</div> -->
</div>
</section>
<!-- this year sponsor-title -->
<section class="sponsors" id="sponsors">
<h1 class="sponsor-title">
Our <span class="awesome">Awesome</span> Sponsors
</h1>
<p class="sponsors_description">
While all our participants make our event lively. It is our very
amazing <span class="about_high">sponsors</span> that
<span class="about_high">make it possible.</span>
</p>
<div class="sponsors-alpha">
<h2 class="alpha-title">Platinum Sponsors</h2>
<div class="alpha-images">
<a href="https://devfolio.co" target="blank">
<img
src="assets/Sponsors/present/devfolio.svg"
style="width: 230px"
/>
</a>
<a href="https://polygon.technology/" target="blank">
<img
src="assets/Sponsors/present/polygon.svg"
style="width: 230px"
/>
</a>
</div>
</div>
<div class="sponsors-gold">
<h2 class="gold-title">Gold Sponsors</h2>
<div class="gold-images">
<a href="https://filecoin.io" target="blank">
<img
src="assets/Sponsors/present/filecoin.svg"
style="width: 190px"
/>
</a>
<a href="https://tezos.com" target="blank">
<img
src="assets/Sponsors/present/tezos.svg"
alt=""
style="width: 190px"
/>
</a>
<a href="https://celo.org" target="blank">
<img
src="assets/Sponsors/present/celo.png"
style="width: 150px; height: auto; margin-top: 10px"
/>
</a>
<a href="https://www.axure.com/" target="blank">
<img
src="assets/Sponsors/present/axure.png"
style="width: 150px; height: auto"
/>
</a>
</div>
</div>
<div class="sponsors-beta">
<h2 class="beta-title">Premium Sponsors</h2>
<div class="beta-images">
<a href="https://www.interviewcake.com/" target="black">
<img
src="assets/Sponsors/present/cake_logo_white.svg"
style="width: fit-content"
/>
</a>
<a href="https://taskade.com/" target="blank">
<img
src="assets/Sponsors/present/taskade-circle-icon.png"
style="width: 60px; height: auto; margin-top: 0px"
/>
</a>
<a href="www.wolfram.com/" target="blank">
<img
src="assets/Sponsors/present/wolfram.svg"
alt=""
style="width: 130px; height: auto; margin-top: 10px"
/>
</a>
<a href="" target="blank">
<img
src="assets/Sponsors/present/clerky.png"
alt=""
style="width: 150px; height: auto; margin-top: -5px"
/>
</a>
<a href="https://1password.com/tour/" target="blank">
<img
src="assets/Sponsors/present/1pass.svg"
alt=""
style="width: 70px; height: auto; margin-top: 0px"
/>
</a>
</div>
</div>
<!-- <div class="sponsors-gold">
<h2 class="gold-title">Bronze Sponsors</h2>
<div class="gold-images">
<a href="https://www.interviewcake.com/" target="black">
<img
src="assets/Sponsors/present/cake_logo_white.svg"
style="width: fit-content"
/>
</a>
</a>
</div>
</div> -->
<div class="wrap">
<div class="sponsors-gamma">
<h2 class="gamma-title">Gamma Sponsors</h2>
<div class="gamma-images">
<!-- <img src="assets/Sponsors/upgrad.svg" /> -->
<a href="https://www.towais.com/" target="blank">
<img
src="assets/Sponsors/present/towais.png"
alt=""
style="width: 160px; height: auto"
/>
</a>
<a href="http://rosenfeldmedia.com/" target="blank">
<img
src="assets/Sponsors/present/RM-Logo_logotype.png"
alt=""
style="width: 160px; height: auto"
/>
</a>
<a href="">
<img
src="assets/Sponsors/jetbrains.png"
alt=""
style="width: 80px; height: auto"
/>
</a>
<a href="https://www.bubble.io/" target="blank">
<img
src="assets/Sponsors/present/Bubble logo.svg"
style="width: 110px; height: auto"
/>
</a>
</div>
</div>
<div class="sponsors-delta">
<h2 class="delta-title">Delta Sponsors</h2>
<div class="delta-images">
<a href="https://www.linode.com/" target="blank">
<img
src="assets/Sponsors/past/Linode-Logo-Black.svg"
style="width: 110px; height: auto"
/>
</a>
<a href="https://www.sketch.com/try/" target="blank">
<img
src="assets/Sponsors/present/Sketch-Logo-Dark.png"
style="width: 150px; height: auto; margin-top: 8px"
/>
</a>
<a href="https://balsamiq.cloud/">
<img
src="assets/Sponsors/past/balsamiq.svg"
style="width: 150px; height: auto; margin-top: 17px"
/>
</a>
<a href="https://www.stickeryou.com/" target="blank">
<img
src="assets/Sponsors/present/sylogo.webp"
style="width: 110px; height: auto"
/>
</a>
</div>
</div>
</div>
<div class="wrap">
<div class="authentication">
<h2 class="authentication-title">Branding Partner</h2>
<a href="https://streamyard.com/" target="blank">
<img
src="assets/Sponsors/past/streamyard.svg"
style="width: 200px; height: auto"
class="partner"
/>
</a>
<br />
<a href="https://givemycertificate.com/" target="blank">
<img
src="assets/Sponsors/present/GMC LogoS.png"
style="padding: 0 10px; width: 80px; height: auto"
class="partner"
/>
</a>
</div>
<div class="community">
<h2 class="community-title">Community Partners</h2>
<!-- <img src="assets/Sponsors/fold-logo.svg" class="partner" /> -->
<img
src="assets/Sponsors/community/ieicuiet_logo.png"
class="partner"
/>
<img
src="assets/Sponsors/community/GDSC Logo chapter amity-mumbai.svg"
class="partner"
style="width: 200px"
/>
<img
src="assets/Sponsors/community/GDSC Logo chapter srcasw.svg"
class="partner"
style="width: 200px"
/>
<img
src="assets/Sponsors/community/GDSC Logo chapter AITAR.svg"
class="partner"
style="width: 200px"
/>
</div>
</div>
</section>
<!-- past sponsor-title -->
<section class="sponsors" id="sponsors">
<h1 class="sponsor-title">
Our <span class="awesome">Past</span> Sponsors
</h1>
<p class="sponsors_description">
The <span class="about_high">sponsors</span> who
<span class="about_high">made it possible</span> last year.
</p>
<div class="sponsors-alpha">
<h2 class="alpha-title">Alpha Sponsors</h2>
<div class="alpha-images">
<img src="assets/Sponsors/past/techlogo.svg" />
<img src="assets/Sponsors/past/airmeet.svg" class="airmeet" />
<img src="assets/Sponsors/past/devfolio.svg" />
</div>
</div>
<div class="sponsors-beta">
<h2 class="beta-title">Beta Sponsors</h2>
<div class="beta-images">
<img src="assets/Sponsors/past/streamyard.svg" />
<img src="assets/Sponsors/past/balsamiq.svg" />
<img src="assets/Sponsors/past/bugsee.svg" />
<a href="https://taskade.com/signup" target="blank">
<img
src="assets/Sponsors/present/taskade-circle-icon.png"
style="width: 50px"
/>
</a>
</div>
</div>
<!-- <div class="sponsors-gold">
<h2 class="gold-title">Gold Sponsors</h2>
<div class="gold-images">
<a href="https://www.interviewcake.com/" target="black">
<img
src="assets/Sponsors/past/present/cake_logo_white.svg"
style="width: fit-content"
/>
</a>
<img src="assets/Sponsors/past/balsamiq.svg" />
<img src="assets/Sponsors/past/devfolio.svg" />
<img src="assets/Sponsors/past/bugsee.svg" />
<a href="https://taskade.com/signup" target="blank">
<img
src="assets/Sponsors/past/taskade-circle-icon.png"
style="width: fit-content"
/>
</a>
</div>
</div> -->
<div class="wrap">
<div class="sponsors-gamma">
<h2 class="gamma-title">Gamma Sponsors</h2>
<div class="gamma-images">
<img src="assets/Sponsors/past/codingNinjas.svg" />
<!-- <img src="assets/Sponsors/past/devfolio.svg" /> -->
<img src="assets/Sponsors/past/Linode-Logo-Black.svg" />
<img src="assets/Sponsors/past/gatsby.svg" />
</div>
</div>
<div class="sponsors-delta">
<h2 class="delta-title">Delta Sponsors</h2>
<div class="delta-images">
<img src="assets/Sponsors/past/todoist.svg" />
<img src="assets/Sponsors/past/topcoder.svg" />
<img src="assets/Sponsors/past/portis.svg" />
</div>
</div>
</div>
<div class="wrap">
<div class="authentication">
<h2 class="authentication-title">Authentication Partner</h2>
<img src="assets/Sponsors/past/fold-logo.svg" class="partner" />
</div>
<div class="community">
<h2 class="community-title">Community Partner</h2>
<img src="assets/Sponsors/past/hyperDart.svg" class="partner" />
</div>
</div>
</section>
</div>
<!-- <hr style="height: 10px; background-color: coral; border-color: orange; border-radius: 10px; opacity: 0.4; margin-top: 15px;"> -->
<div class="message-icon">
<i class="fa-solid fa-message" id="message-box"></i>
</div>
<div class="faq" id="faq">
<div class="cross"><i class="fa-solid fa-xmark" id="close"></i></div>
<div class="description">
<h1 class="description-header">Have a question?</h1>
<br />
<div class="description-content">
Below are the most frequently asked questions that our bot Xori can
help you with. If she can't help you... don't worry we've got your
back. Just mail us at
<a
style="color: white"
href="https://mail.google.com/mail/u/0/#inbox?compose=CllgCJlJWKvrhXMdbRfslrCGrxcJWCxtCqcccJbJmNvcRvkZwZQcJZBLlPrpRpjHzHbvPfXfbFL"
target="_blank"
>
or join any of our socials.
</div>
</div>
<div class="faq-container">
<div class="faq-left"></div>
<div class="faq-right">
<div>
<div class="right-header">Want to reach out to us?</div>
<div class="right-description">