-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1549 lines (1486 loc) · 72.4 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, maximum-scale=1.0, user-scalable=no">
<title>Wittyhacks 5.0 | 04 - 06 April 2025</title>
<meta property="fb:app_id" content="133680194095743">
<meta property="og:title" content="Wittyhacks 5.0 | 04 - 06 April">
<meta property="og:type" content="website">
<meta property="og:url" content="http://wittyhacks.in">
<meta property="og:image" content="assets/img/fb-og.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:description"
content="WittyHacks is a fun, competitive and productive hackathon to be organized in January 2019.WittyHacks is a hackathon hosted at the WittyFeed office in Indore. Build your team and develop a product during a time span of 36 hours.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@wittyhacks">
<meta name="twitter:creator" content="@datacode_in">
<meta name="twitter:site" content="@wittyhacks">
<meta name="twitter:title" content="Wittyhacks">
<meta name="twitter:description"
content="WittyHacks is a fun, competitive and productive hackathon to be organized in April 2024. WittyHacks is a hackathon hosted at the WittyFeed office in Indore. Build your team and develop a product during a time span of 36 hours.">
<meta name="twitter:domain" content="http://wittyhacks.in">
<meta name="twitter:image:src" content="assets/img/twitter-og.png">
<meta name="description" content="Wittyhacks 5.0: Central India's biggest community hackathon.">
<meta name="keywords"
content="wittyhacks, wittyhacks hackathon, datacode, datacodecommunity, hackathon, hackathon ideas, hackathon indore, hackathon india, hackathon hackers india, indore, community, hackathon community, developer community, developer relations, api, sdk, hardware hackathon, hardware hacks, technology, startups, innovation, hacks">
<meta name="author" content="Mrinal Jain">
<meta name="author" content="Datacode">
<meta http-equiv="cache-control" content="public">
<!-- <meta http-equiv="expires" content="Friday, 20 August 2019, 00:00:00 GMT"> -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="shortcut icon" href="assets/img/favicon_small.ico" type="image/x-icon">
<link rel="icon" href="assets/img/favicon_small.ico" type="image/x-icon">
<meta name="msapplication-TileColor" content="#046fc2">
<meta name="theme-color" content="#046fc2">
<meta name="google-site-verification" content="TKQ8HcsX3fYhICvUmUQ8IQs5gE8pyfkFlNPCSzbjYso" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Rubik:400,500,900" rel="stylesheet" crossorigin>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126634241-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-126634241-1');
</script>
<style>
canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 1;
z-index: -1;
}
</style>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-1222422410254597",
enable_page_level_ads: true
});
</script>
<!-- Share this Script -->
<script type='text/javascript'
src='//platform-api.sharethis.com/js/sharethis.js#property=5bc836a3b2b6bd00118b8ca2&product=sticky-share-buttons'
async='async'></script>
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<a id="mlh-trust-badge"
style="display:block;max-width:100px;min-width:55px;position:fixed;right:50px;top:0;width:10%;z-index:10000"
href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2024-season&utm_content=white"
target="_blank">
<img src="https://s3.amazonaws.com/logged-assets/trust-badge/2025/mlh-trust-badge-2025-white.svg"
alt="Major League Hacking 2025 Hackathon Season" style="width:100%">
</a>
<div id="fb-root"></div>
<script>(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js#xfbml=1&version=v2.12&autoLogAppEvents=1';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- <div id=cells></div> -->
<div class="elem">
<div class="d1 dia ring b"></div>
<div class="d2 dia b"></div>
<div class="d3 dia b"></div>
<div class="d4 dia ring b"></div>
<!-- <div class="c1 circ ring y"></div> -->
<div class="c2 circ ring y"></div>
<div class="c3 circ y"></div>
<div class="r3 rect ring r"></div>
<!-- <div class="r2 rect ring r"></div> -->
<div class="r1 rect r"></div>
</div>
<!-- navbar -->
<nav class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"> <img class="nav-logo" src="assets/img/logo.png" alt="Wittyhacks Logo"
style="width: 115px;">
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right uppercase">
<li><a class="nav-pills" href="#about">about</a></li>
<li><a class="nav-pills" href="#prizes">prizes</a></li>
<!-- <li><a class="nav-pills" href="#schedule">schedule</a></li> -->
<li><a class="nav-pills" href="#sponsors">sponsors</a></li>
<li><a class="nav-pills" href="#location">Venue</a></li>
<li><a class="nav-pills" href="team.html">team</a></li>
<li><a class="nav-pills" href="forms.html">Get Involved</a></li>
<li><a class="nav-pills" href="#faq">faq</a></li>
<!-- <li><a class="nav-pill btn-dashboard" href="register.html">Register</a></li> -->
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<header>
<div class="home">
<div class="home-bg"><img src="assets/img/home-bg.JPG" alt=""></div>
<section id="home" class="container text-center pt-50">
<div class="row text-center d-flex justify-content-center">
<div class="col-6">
<img width="200px" class="main-logo" src="assets/img/wittyhacks_white_logo.png" alt="Wittyhacks Logo">
<h1 class="chapter">5.0</h1>
<h2 class="pt-20">04 - 06 April 2025</h2>
<address>
<p><a href="#location" target="_blank">NMIMS, Indore</a></p>
</address>
<!-- <a href="register.html" target="_blank" rel="noopener noreferrer" class="btn-join">
REGISTER NOW
</a> -->
<!-- <a href="https://wittyhacks4.devfolio.co/" target="_blank" class="apply-button"><button><img
src="assets/img/devfolio-logo-icon.png" alt=""> Apply With Devfolio</button></a> -->
<div class="apply-button" data-hackathon-slug="wittyhacks" data-button-theme="dark"
style="height: 44px; width: 312px">Apply With Devfolio</div>
<div class="typewriter pt-50">
<h1 class="type-txt">36-hrs offline hackathon experience..!</h1>
</div>
</div>
</div>
</section>
</div>
</header>
<section id="about" class="pt-100">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<p class="bg-white">Wittyhacks prides itself on being Central India’s biggest community hackathon. Since its
inception in 2018, Wittyhacks has been a platform where technology leaders and the brightest minds come
together to collaborate
on building tools that solve real problems.</p>
</div>
<div class="presented">
<h1 class="section-heading sponsor-heading text-center">Presented By</h1>
<img src="assets/img/Datacode_White_Logo.png" alt="datacode">
</div>
<div class="col-lg-6 col-lg-offset-3 col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 pt-50 text-center">
<!-- <img src="assets/img/about.jpg" alt="hero image" class="img-fold">
<img src="assets/img/fold.svg" alt="hero image" class="fold-reverse"> -->
<iframe src="https://www.youtube.com/embed/Z_oqwfMuEKA?si=StiDVRFH0oegh2yX" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen class="iframe"></iframe>
</div>
<div class="col-sm-8 col-sm-offset-2 pt-50">
<p class="bg-white">With big breakthroughs in the past edition, our team is thrilled to host its third in
the Cleanest City of India, Indore. We are all set to make Wittyhacks a bigger success than any of the
previous iterations. We
bring you…</p>
<div class="text-center">
<p class="large-text">36</p>
<p class="uppercase semilarge-text">hours<br>of ... </p>
</div>
<div class="text-center bg-white">
<p class="l1">DESIGNING / BUILDING / CODING / HACKING</p>
<p class="l2">NETWORKING / FRIENDS / MENTORS / COMPETITIONS</p>
<p class="l3">COFFEE / TEA / GREEN TEA / RED BULL / FOOD / SNACKS / SCHWAG</p>
<p class="l4">NERF WAR / TECH TALKS / DID WE MENTION GAMES? / PRIZES / BRAND NEW APIs / HARDWARE</p>
<p class="l5">AND / A / WHOLE / LOT / <span> MORE > </span></p>
</div>
</div>
</div>
</div>
<div class="container pt-100 about-sec">
<div class="row vertical-align">
<div class="col-sm-6 col-lg-6 img-wrap"><img src="assets/img/about-4.1.JPG" alt="Wittyhacks image"
class="img-fold">
<img src="assets/img/fold.svg" alt="shadow" class="fold">
</div>
<div class="col-sm-6 col-lg-6 text-block-padding">
<div class="talk-wrap">
<div class="talk-bubble">
<p>everyone is welcome...</p>
</div>
</div>
<p class="bg-white">Whether you’re writing your first lines of HTML, building a VR app or a hoverboard,
Wittyhacks is just the place for you. We will have workshops and mentors to help make your idea happen. You
will be able to exhibit
your skills without
worrying about any mortal needs. We will take care of everything :)</p>
</div>
</div>
<div class="row vertical-align pt-100 bg-sec">
<div class="col-sm-6 col-lg-6 img-wrap col-lg-push-6 col-sm-push-6"><img src="assets/img/about-4.2.JPG"
alt="Wittyhacks images" class="img-fold"> <img src="assets/img/fold.svg" alt="shadow" class="fold-reverse">
</div>
<div class="col-sm-6 col-lg-6 text-block-padding col-lg-pull-6 col-sm-pull-6">
<div class="talk-wrap talk-wrap-right">
<div class="talk-bubble talk-bubble-right">
<p>...to make new friends</p>
</div>
</div>
<p class="bg-white">Wittyhacks provides a brilliant opportunity for you and your team to forge professional
contacts and make new friends. With over 250 developers and designers gathering from all over the country
in Indore, grab your
chance of
connecting with people to discuss ideas and opportunities.</p>
</div>
</div>
<div class="row vertical-align pt-100">
<div class="col-sm-6 col-lg-6 img-wrap"><img src="assets/img/about-4.3.JPG" alt="Wittyhacks images"
class="img-fold">
<img src="assets/img/fold.svg" alt="shadow" class="fold">
</div>
<div class="col-sm-6 col-lg-6 text-block-padding">
<div class="talk-wrap">
<div class="talk-bubble">
<p>...learn</p>
</div>
</div>
<p class="bg-white">Hackathons are a great way to give back to the community. Mentoring beginners is always
helpful for them and rewarding for us. We’re going to have mentors from a number of different organizations
present at the venue.
Whenever you’re stuck on a problem or need suggestions they'll always be within a hand’s reach.</p>
</div>
</div>
<div class="row vertical-align pt-100">
<div class="col-sm-6 col-lg-6 img-wrap col-lg-push-6 col-sm-push-6"><img src="assets/img/about-4.4.JPG"
alt="Wittyhacks images" class="img-fold"> <img src="assets/img/fold.svg" alt="shadow" class="fold-reverse">
</div>
<div class="col-sm-6 col-lg-6 text-block-padding col-lg-pull-6 col-sm-pull-6">
<div class="talk-wrap talk-wrap-right">
<div class="talk-bubble talk-bubble-right">
<p>...build</p>
</div>
</div>
<p class="bg-white">This year we are inviting not just students but everyone to build on ideas of their
choice. Watching software materialize from pure thought, part by part is the closest to experiencing magic
we have ever got to. And
we’re excited
to see that magic happen all over again!</p>
</div>
</div>
</div>
</section>
<!--about ends-->
<!--tracks begin-->
<div id="tracks" class="pt-100">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="talk-wrap">
<div class="talk-bubble">
<p>...build</p>
</div>
</div>
<p class="bg-white">This year we are inviting everyone to build software on 6 different tracks. Each track is
a challenge
in itself. We are very excited to see what hackers build. Each track will have an individual winner.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="talk-wrap talk-wrap-on-content">
<div class="talk-bubble">
<p>...and grow</p>
</div>
</div>
<img src="assets/img/home-bg.JPG" alt="sposnors and participants on photo booth">
</div>
<div class="col-sm-8 col-sm-offset-2 pt-100" style="display: none;">
<p class="bg-white">Here’s a rough breakdown of the two days you’ll be spending at Wittyhacks. A more
detailed scheduled will be made available when the hackathon starts.</p>
</div>
</div>
</div>
</div>
<!-- Hack judges -->
<div class="container pt-100 judge">
<div class="row">
<div class="col-lg-12">
<h1 class="sponsor-heading text-center bg-white">Meet our Industry Expert Judges</h1>
<div class="row">
<div class="col-md-4 col-12">
<img src="assets/img/swapnil-judge.jpg" alt="">
<h3 class="bg-white">Swapnil M Mane</h3>
<p class="bg-white></p>
<p class=" bg-white">
<a href="https://www.linkedin.com/in/swapnilmmane/" target="_blank" rel="noopener noreferrer">
<i class='bx bxl-linkedin'></i>
</a>
<a href="https://twitter.com/swapnilmmane" target="_blank" rel="noopener noreferrer">
<i class='bx bxl-twitter'></i>
</a>
</p>
</div>
<div class="col-md-4 col-12">
<img src="assets/img/rohit-judge.jpeg" alt="">
<h3 class="bg-white">Rohit Jain</h3>
<p class="bg-white">
<a href="https://www.linkedin.com/in/rohit-jain-dev/" target="_blank" rel="noopener noreferrer">
<i class='bx bxl-linkedin'></i>
</a>
<a href="https://twitter.com/rohitjain_dev?t=LswcTDyiE14BYPow4ljQzA&s=09" target="_blank"
rel="noopener noreferrer">
<i class='bx bxl-twitter'></i>
</a>
</p>
</div>
<div class="col-md-4 col-12">
<img src="assets/img/mayank.jpeg" alt="">
<h3 class="bg-white">Mayank Pratap Singh</h3>
<p class="bg-white">
<a href="https://www.linkedin.com/in/mayankpratap/" target="_blank" rel="noopener noreferrer">
<i class='bx bxl-linkedin'></i>
</a>
<a href="/" target="_blank" rel="noopener noreferrer">
<i class='bx bxl-twitter'></i>
</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- hackathon track -->
<section id="themes" class="pt-50">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="sponsor-heading text-center">Tech Domains</h1>
<div class="themes-row">
<div class="themes-card tc1">
<h3>Web Development</h3>
<p>Web Development is the building and maintenance of websites; the work that happens behind the scenes to
make a website look great, swift and efficient with a seamless user experience.</p>
</div>
<div class="themes-card tc2">
<h3>Open Source</h3>
<p>Open source is a source code of a software which is made freely available for possible modifcation and
re-distribution with its original rights.</p>
</div>
<div class="themes-card tc3">
<h3>App Development</h3>
<p>App Development is the process of creating software applications. It includes user interface design,
programming, testing and deployment of the application.</p>
</div>
<div class="themes-card tc4">
<h3>AI-ML</h3>
<p>Artificial Intelligence and Machine Learning involves the usage of complex algorithms that
automatically learn and refine the learning from a vast amount of data and data patterns.</p>
</div>
<div class="themes-card tc5">
<h3>AR/VR</h3>
<p>Augmented reality (AR) adds digital elements to a live view often by using the camera on a smartphone.
Virtual reality (VR) implies a complete immersion experience that shuts out the physical world.</p>
</div>
<div class="themes-card tc6">
<h3>Cloud</h3>
<p>Cloud computing is the on-demand availability of computer system resources, especially data storage
(cloud storage) and computing power, without direct active management by the user.</p>
</div>
<div class="themes-card tc7">
<h3>Web3</h3>
<p>Web3 is a term used to describe the next iteration of the internet, one that is built on blockchain
technology and is communally controlled by its users.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- hackathon track ends -->
<!-- Prize Tracks section starts -->
<section id="prize-track" class="pt-100">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="sponsor-heading text-center">Prize Tracks</h1>
<div class="prize-t-container">
<div class="prize-t-card">
<h3>M5GO IoT Starter Kit</h3>
<p>MongoDB Atlas provides students with a $50 credit or a free tier for accessing the leading modern cloud
database. Users can efficiently manage data with a suite of tools and resources from MongoDB University.
Building a hack with MongoDB Atlas offers the chance to win an M5GO IoT Starter Kit for themselves and
their team.</p>
<div class="prize-t-logo">
<img src="assets/img/mongodb.png" alt="mongo logo">
</div>
</div>
<div class="prize-t-card">
<h3>Wireless Headphones & Battery</h3>
<p>Auth0 simplifies authentication with features like social sign-in and Multi-Factor Authentication,
eliminating extensive development time. Sign up for a free trial with no credit card required, support
for up to 7,000 free active users, and a chance to win wireless headphones and battery packs for you and
your team by using Auth0 APIs.
</p>
<div class="prize-t-logo">
<img src="assets/img/auth0.png" alt="auth0 logo">
</div>
</div>
<div class="prize-t-card">
<h3>Hack from Home kit</h3>
<p>GoDaddy Registry is giving you everything you need to be the best hacker no matter where you are.
Register your domain name with GoDaddy Registry for a chance to win a Hack from Home Kit! Each Kit
contains wireless earbuds, blue light glasses, selfie ring light and a pouch for easy transport.</p>
<div class="prize-t-logo">
<img src="assets/img/godaddy.png" alt="GoDaddy logo">
</div>
</div>
<div class="prize-t-card">
<h3>$200 USD in FLOW Token</h3>
<p>Flow is a decentralized blockchain tailored for creating Web3 apps with mainstream appeal. Hackers can
leverage its capabilities to build and share decentralized applications using Cadence for smart contract
development. Dive into the world of Flow this weekend and stand a chance to win $200 USD worth of FLOW
tokens for each team member!</p>
<div class="prize-t-logo">
<img src="assets/img/flow.png" alt="flow logo">
</div>
</div>
<!-- <div class="prize-t-card">
<h3>GitHub Octocat Puzzle & Sticker Bundle</h3>
<p>Sign up for GitHub Global Campus and use GitHub repository to host hackathon
projects, make sure your use of GitHub stands out with ReadMe page, pull requests, collaboration
history, and GitHub page deployment.</p>
<div class="prize-t-logo">
<img src="assets/img/github-prize.png" alt="GitHub logo">
</div>
</div> -->
<div class="prize-t-card">
<h1>PieHost (SaaS Village LLP)</h1>
<p>$1000 coupon to every contestant who integrates piehost in their application,
<br>
10000$ credits for 1st team, <br>
5000$ credits for 2nd, <br>
2000$ credits for 3rd
</p>
<div class="prize-t-logo">
<img src="assets/img/piehost.png" alt="PieHost logo">
</div>
</div>
<div class="prize-t-card">
<h1>Wireless Headphones</h1>
<p>With simple installation via pip, developers can swiftly create interactive interfaces supported by
data-driven backends. Embrace Taipy in your hackathon project and stand a chance to win Wireless
Headphones for your team, along with recognition for your innovation!</p>
<div class="prize-t-logo">
<img src="assets/img/taipy.png" alt="taipy logo">
</div>
</div>
<div class="prize-t-card">
<h1>Rivendell</h1>
<p>1000$ For All participants, <br>
50$ worth soulbound NFT For All participants</p>
<div class="prize-t-logo">
<img src="assets/img/rivendell.jpg" alt="Beeceptor logo">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Prize Tracks section ends -->
<!-- <section id="schedule" class="pt-100" style="display: none;">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<p class="bg-white">Here’s a rough breakdown of the two days you’ll be spending at Wittyhacks. A more detailed schedule will be made available close to the event.</p>
</div>
<div class="col-sm-8 col-sm-offset-2 schedule bg-white">
<div class="col-lg-6">
<div class="talk-wrap" style="margin-left: -28px">
<div class="talk-bubble">
<p>Oct 7, Saturday</p>
</div>
</div>
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td><strong>08:00 AM</strong></td>
<td>Check-In</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td><strong>08:30 AM</strong></td>
<td>Breakfast</td>
</tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td><strong>11:00 AM</strong></td>
<td>Kickoff</td>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td><strong>01:00 PM</strong></td>
<td>Lunch</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td><strong>02:30 PM</strong></td>
<td>Tech Talk</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td><strong>09:30 PM</strong></td>
<td>Dinner</td>
</tr>
</tbody>
</table>
</div>
<div class="col-lg-6">
<div class="talk-wrap" style="margin-left: -28px">
<div class="talk-bubble">
<p>Oct 8, Sunday</p>
</div>
</div>
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td><strong>02:00 AM</strong></td>
<td>Midnight Snacks</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td><strong>08:00 AM</strong></td>
<td>Breakfast</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td><strong>12:00 PM</strong></td>
<td>Lunch</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td><strong>05:00 PM</strong></td>
<td>Hacking Stops</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td><strong>05:15 PM</strong></td>
<td>Judging Begins</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td><strong>09:00 PM</strong></td>
<td>Goodbye!</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section> -->
<!-- schedule -->
<!-- <section id="schedule" class="pt-100">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<p class="bg-white">Here’s a rough breakdown of the two days you’ll be spending at Wittyhacks. A more
detailed schedule will be made available close to the event.</p>
</div>
<div class="col-sm-11 col-sm-offset-1 schedule bg-white">
<div class="col-lg-4">
<div class="talk-wrap" style="margin-left: -28px">
<div class="talk-bubble">
<p>April 07, Friday</p>
</div>
</div>
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>07:00 PM</strong>
</td>
<td>Check-In</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>08:00 PM</strong>
</td>
<td>Kickoff</td>
</tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>08:30 PM</strong>
</td>
<td>Ice Breakers</td>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>09:30 PM</strong>
</td>
<td>Dinner</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>11:00 PM</strong>
</td>
<td>Tech Talk</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>02:00 AM</strong>
</td>
<td>Midnight Snacks</td>
</tr>
</tbody>
</table>
</div>
<div class="col-lg-4">
<div class="talk-wrap" style="margin-left: -28px">
<div class="talk-bubble">
<p>April 08, Saturday</p>
</div>
</div>
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>02:00 AM</strong>
</td>
<td>Midnight Snacks</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>08:00 AM</strong>
</td>
<td>Breakfast</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>12:00 PM</strong>
</td>
<td>Lunch</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>05:00 PM</strong>
</td>
<td>Tech Talks</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>07:15 PM</strong>
</td>
<td>Hacking Resumes</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>09:00 PM</strong>
</td>
<td>Dinner!</td>
</tr>
</tbody>
</table>
</div>
<div class="col-lg-4">
<div class="talk-wrap" style="margin-left: -28px">
<div class="talk-bubble">
<p>April 09, Sunday</p>
</div>
</div>
<table class="table table-schedule">
<tbody>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>02:00 AM</strong>
</td>
<td>Midnight Snacks</td>
</tr>
<tr>
<td>
<p class="schedule-time morning"></p>
</td>
<td>
<strong>08:00 AM</strong>
</td>
<td>Hacking Stops</td>
</tr>
<tr>
<td>
<p class="schedule-time noon"></p>
</td>
<td>
<strong>9:00 AM</strong>
</td>
<td>Presentations</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>11:00 AM</strong>
</td>
<td>Winners ..!</td>
</tr>
<tr>
<td>
<p class="schedule-time evening"></p>
</td>
<td>
<strong>11:30 AM</strong>
</td>
<td>Networking</td>
</tr>
<tr>
<td>
<p class="schedule-time night"></p>
</td>
<td>
<strong>12:30 PM</strong>
</td>
<td>GoodBye!</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section> -->
<!-- prize section starts -->
<section id="prizes" class="pt-100">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="sponsor-heading text-center">Prizes & Swags</h1>
<div class="prize-row">
<!-- 1st card -->
<div class="prize-card">
<div class="face face1">
<div class="content">
<h2>Winner</h2>
<p>
<li>10000 $ worth Credits</li>
<li>1000 $ worth Credits</li>
<li>131.97 $ worth Credits</li>
</p>
</div>
</div>
<div class="face face2">
<h2>01</h2>
<div class="face2-cont">
<h4>11,133.97 $ worth Prizes</h4>
<p>Tap on Card to know more</p>
</div>
</div>
</div>
<!-- 2nd card -->
<div class="prize-card">
<div class="face face1">
<div class="content">
<h3>1<sup>st</sup> Runner up</h3>
<p>
<li>5000 $ worth Credits</li>
<li> 1000 $ worth Credits</li>
<li> 83.98 $ worth Credits</li>
</p>
</div>
</div>
<div class="face face2">
<h2>02</h2>
<div class="face2-cont">
<h4> 6085.07 $ worth Prizes</h4>
<p>Tap on Card to know more</p>
</div>
</div>
</div>
<!-- 3rd card -->
<div class="prize-card">
<div class="face face1">
<div class="content">
<h3>2<sup>nd</sup> Runner up</h3>
<p>
<li> 2000 $ worth Credits</li>
<li> 1000 $ worth Credits</li>
<li> 47.99 $ worth Credits</li>
</p>
</div>
</div>
<div class="face face2">
<h2>03</h2>
<div class="face2-cont">
<h4>3048.54 $ worth Prizes</h4>
<p>Tap on Card to know more</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- prize section ends -->
<!-- sponsor main section -->
<section id="sponsors" class="pt-100">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="talk-wrap">
<div class="talk-bubble">
<p>...thanks a lot</p>
</div>
</div>
<p class="bg-white">Interested in becoming a sponsor? Email us at <a
href="mailto:wittyhacks@gmail.com?subject=Wittyhacks%204.0%20Sponsorship">wittyhacks@gmail.com</a></p>
</div>
</div>
<!-- sponsor card section -->
<div class="row">
<div class="col-lg-12">
<h1 class="section-heading sponsor-heading text-center">SPONSORS & Partners</h1>
<!-- Title Partners -->
<h2 class=" text-center pt-25">Title Partners</h2>
<div class="sponsors">
<a href="https://devfolio.co/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/devfolio-logo.png" alt="DEVFOLIO LOGO">
</a>
<a href="https://ethindia.co/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/ethIndia-logo.png" alt="ETHINDIA LOGO">
</a>
<a href="https://polygon.technology/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/pologon-logo.png" alt="POLOGON LOGO">
</a>
</div>
<!-- Platinum Partners -->
<h2 class=" text-center pt-25">Platinum Sponsors</h2>
<div class="sponsors">
<a href="https://github.com/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/github-prize.png" alt="github logo">
</a>
<a href="https://www.synergetics-india.com/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/synergetics.jpg" alt="synergetics logo">
</a>
</div>
<!-- gold sponsors -->
<h2 class="text-center g">Gold Sponsors</h2>
<div class="gold sponsors">
<!-- <a href="https://github.com/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/github-prize.png" alt="" style="max-width: 400px">
</a> -->
<a href="https://mlh.io/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/mlh logo.png" alt="" style="max-width: 400px">
</a>
</div>
<!-- silver sponsors -->
<h2 class="text-center s">Silver Sponsors</h2>
<div class="sponsors silver">
<a href="http://hackp.ac/mlh-StandOutStickers-hackathons" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/standoutstickers.png" alt="">
</a>
<a href="https://www.pixoatic.com/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/pixoatic-logo.png" alt="">
</a>
</div>
<!-- Bronze sponsors -->
<h2 class=" text-center bro">Bronze Sponsors</h2>
<div class="sponsors bronze">
<a href="https://fossunited.org/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor"
src="https://raw.githubusercontent.com/fossunited/Branding/0c873d1f0de9cd5c6c35cac56f3f79af73102b25/asset/hackathon-branding/logo-for-hackathon-organisers.svg"
alt="threeway logo">
</a>
<a href="https://www.digitalocean.com/" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/digitalocean.svg" alt="DigitalOcean logo">
</a>
<a href="" rel="noopener noreferrer" target="_blank">
<img class="logo-sponsor" src="assets/img/msp.png" alt=" logo">
</a>