-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1184 lines (1158 loc) · 75.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 content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="ie=edge" http-equiv="X-UA-Compatible" />
<meta content="Mobile Development Hackathon organized by UCSC IEEE" name="description" />
<meta content="Mobile Development, Hackathon" name="keywords" />
<meta content="UCSC IEEE" name="author" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="ie=edge" http-equiv="X-UA-Compatible" />
<title>MadHack</title>
<link href="assets/css/styles.css" rel="stylesheet" />
<link href="assets/css/tailwind.css" rel="stylesheet" />
<link href="assets/images/landing/favicon.ico" rel="icon" sizes="128x128" type="image/png">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script defer src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.js"></script>
<script crossorigin="anonymous" src="https://kit.fontawesome.com/1c113cefd7.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="assets/js/countdown.js"></script>
<script src="assets/js/smooth-scroll.js"></script>
<script src="https://cdn.lordicon.com//libs/frhvbuzj/lord-icon-2.0.2.js"></script>
</head>
<body class="leading-normal tracking-normal text-white bg-black font-default">
<div style="z-index: 0;">
<svg class="absolute top-6 left-96 bbred animate-pulse" height="20vh" id="phone"
style="display: block; margin: auto" viewBox="0 0 145.08 152.72" width="20vw"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
opacity: 0.5;
}
.cls-2 {
fill: none;
stroke: #00a7e1;
stroke-miterlimit: 10;
}
</style>
</defs>
<title>Asset 1</title>
<g data-name="Layer 2" id="Layer_2">
<g data-name="Layer 1" id="Layer_1-2">
<g class="cls-1">
<rect class="cls-2" height="143.88" rx="22.41" ry="22.41"
transform="translate(64.18 -28.63) rotate(38.98)" width="92.35" x="26.36" y="4.42" />
<rect class="cls-2" height="107.55" rx="14.98" ry="14.98"
transform="translate(60.65 -33.75) rotate(38.98)" width="75.1" x="40.45" y="15.04" />
<ellipse class="cls-2" cx="35.93" cy="120.62" rx="7.08" ry="6.99"
transform="translate(-80.44 72.67) rotate(-51.02)" />
</g>
</g>
</g>
</svg>
<svg class="absolute top-96 left-16 bbred animate-pulse overflow-hidden" height="20vh" id="android"
viewBox="0 0 107.64 118.3" width="20vw" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: none;
stroke: #00a7e1;
stroke-miterlimit: 10;
opacity: 0.5;
}
</style>
</defs>
<title>Asset 2</title>
<g data-name="Layer 2" id="Layer_2">
<g data-name="Layer 1" id="Layer_1-2">
<path class="cls-1"
d="M57.79,12.29l3.73-9.22A1.85,1.85,0,0,0,60.21.59,2.42,2.42,0,0,0,57.34,1.9L53.4,11.63a37.15,37.15,0,0,0-21.93,4.73l-7.6-7.23a2.42,2.42,0,0,0-3.15,0,1.85,1.85,0,0,0-.18,2.81l7.2,6.86c-9.53,7.1-14.69,18.38-12.28,29.57a2.12,2.12,0,0,0,2.61,1.46L79.4,36.57a2.12,2.12,0,0,0,1.77-2.4C78.76,23,69.41,14.83,57.79,12.29Z" />
<path class="cls-1"
d="M60.66,24.05l-2.92.63a1.41,1.41,0,0,0-1.19,1.59h0l.55,2.55a1.41,1.41,0,0,0,1.73,1l2.92-.63a1.41,1.41,0,0,0,1.19-1.59h0L62.39,25A1.41,1.41,0,0,0,60.66,24.05ZM33.15,30l-2.92.63A1.41,1.41,0,0,0,29,32.21h0l.55,2.55a1.41,1.41,0,0,0,1.73,1l2.92-.63a1.41,1.41,0,0,0,1.19-1.59h0l-.55-2.55a1.41,1.41,0,0,0-1.73-1ZM80,39.23,18.64,52.47a2.12,2.12,0,0,0-1.77,2.4l8.39,38.87c1.12,5.14,6.75,8.28,12.6,7l2.8-.6,2.5,11.6c.92,4.25,5.59,6.86,10.43,5.82s8-5.35,7.1-9.6l-2.5-11.6,4.14-.89,2.5,11.6c.92,4.25,5.59,6.86,10.43,5.82s8-5.35,7.1-9.6l-2.5-11.6,2.55-.55c5.84-1.26,9.68-6.45,8.58-11.59L82.59,40.68A2.12,2.12,0,0,0,80,39.23ZM92,36.68c-4.23.91-7,4.69-6.21,8.42l5.83,27c.81,3.73,4.9,6,9.13,5.11s7-4.69,6.21-8.42l-5.83-27C100.36,38.06,96.28,35.77,92,36.68ZM6.85,55.06c-4.23.91-7,4.69-6.21,8.42l5.83,27c.81,3.73,4.9,6,9.13,5.11s7-4.69,6.21-8.42L16,60.18C15.17,56.44,11.08,54.16,6.85,55.06Z" />
</g>
</g>
</svg>
<svg class="absolute bottom-40 right-72 bbred animate-pulse overflow-hidden" height="20vh" id="react"
viewBox="0 0 105.25 106.23" width="20vw" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
opacity: 0.5;
}
.cls-2 {
fill: none;
}
.cls-2,
.cls-3 {
stroke: #00a7e1;
stroke-miterlimit: 10;
}
.cls-3 {
fill: #00a7e1;
}
</style>
</defs>
<title>Asset 4</title>
<g data-name="Layer 2" id="Layer_2">
<g data-name="Layer 1" id="Layer_1-2">
<g class="cls-1">
<path class="cls-2"
d="M46.55,33.13c28.59-7.51,54.48-5,57.84,5.64S87.29,64.08,58.7,71.59,4.21,76.57.86,65.95,18,40.63,46.55,33.13Z" />
<path class="cls-2"
d="M68.15,38.72c24.79,20.86,39.33,44.44,32.49,52.65s-32.49-2-57.28-22.91S4,24,10.87,15.82,43.36,17.86,68.15,38.72Z" />
<path class="cls-2"
d="M33.83,46.07c9.37-28.79,25.48-49,36-45.08s11.43,30.39,2.07,59.18-25.48,49-36,45.08S24.47,74.86,33.83,46.07Z" />
<path class="cls-3"
d="M66,48.86a12,12,0,0,1-8.65,15.36A13.57,13.57,0,0,1,41,55.4,12,12,0,0,1,49.67,40,13.57,13.57,0,0,1,66,48.86Z" />
</g>
</g>
</g>
</svg>
<svg class="absolute right-0 top-10 bbred animate-pulse" height="20vh" id="flutter"
viewBox="0 0 89.52 100.47" width="20vw" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
opacity: 0.5;
}
.cls-2,
.cls-3 {
fill: none;
stroke-miterlimit: 10;
}
.cls-2 {
stroke: #00b9b6;
}
.cls-3 {
stroke: #003458;
}
</style>
</defs>
<title>Asset 5</title>
<g data-name="Layer 2" id="Layer_2">
<g data-name="Layer 1" id="Layer_1-2">
<g class="cls-1">
<path class="cls-2" d="M11.55,18.1.57,92.46,21.74,95l11-74.36L35.28,1.08Z" />
<path class="cls-2"
d="M24.7,94.91l6-42.28L52.8,35.77,47.07,76.23,44.33,95.51h0l-.28,1.91" />
<path class="cls-3" d="M43.85,97.4l3.33-21.2S89.23,81,89,81.21L65.35,100" />
<line class="cls-2" x1="24.7" x2="43.85" y1="94.91" y2="97.4" />
<line class="cls-3" x1="43.85" x2="65.35" y1="97.4" y2="99.97" />
</g>
</g>
</g>
</svg>
</div>
<!--Nav-->
<nav class="fixed w-full z-50 top-0 text-white transition duration-500 ease-in-out" id="header">
<div
class="w-full container mx-auto flex flex-wrap items-center justify-between mt-0 py-3 px-3 md:py-4 lg:py-2 lg:mt-1">
<div class="pl-4 flex items-center">
<a class="toggleColour text-white no-underline hover:no-underline font-bold text-2xl lg:text-4xl"
href="#home"> <img alt="Madhack Logo" class="w-24 md:w-28 lg:w-32"
src="assets/images/landing/madhack-logo.webp" />
</a>
</div>
<div class="block lg:hidden pr-4">
<button
class="flex items-center p-1 text-white focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out"
id="nav-toggle">
<svg class="fill-current h-6 w-6" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<title>Menu</title>
<path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z" />
</svg>
</button>
</div>
<div class="w-full flex-grow lg:flex lg:items-center lg:w-auto hidden mt-2 lg:mt-0 bg-blue-500 lg:bg-transparent p-4 lg:p-0 z-20 text-base uppercase font-bold tracking-widest"
id="nav-content">
<ul
class="text-white sm:text-gray-400 md:text-gray-400 lg:text-gray-400 lg:flex justify-end flex-1 items-center">
<li class="mr-3">
<a class="inline-block no-underline hover:text-gray-500 py-3 lg:py-2 px-4"
href="#timeline">Timeline</a>
</li>
<li class="mr-3">
<a class="inline-block no-underline hover:text-gray-500 py-3 lg:py-2 px-4"
href="#prizes">Prizes</a>
</li>
<li class="mr-3">
<a class="inline-block no-underline hover:text-gray-500 py-3 lg:py-2 px-4"
href="#sponsors">Sponsors</a>
</li>
<li class="mr-3">
<a class="inline-block no-underline hover:text-gray-500 py-3 lg:py-2 px-4"
href="#frequently-asked">FAQs</a>
</li>
<li class="mr-3">
<a class="inline-block no-underline hover:text-gray-500 py-3 lg:py-2 px-4 lg:mr-3"
href="#contact-us">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Hero-->
<div class="w-full flex flex-col justify-center text-center" id="home">
<div class="pt-20 pb-10 md:pt-32 md:pb-24">
<h1 class="font-landing landing-text" data-heading="mad">Madhack</h1>
<p
class="text-white text-center font-bold mt-10 md:mt-0 px-5 sm:px-0 md:px-0 lg:px=0 text-xs sm:text-xs md:text-xl lg:text-xl uppercase tracking-wider break-words sm: break-normal md:break-normal lg:break-normal">
Battle out your mobile application development skills in the ultimate hackathon</p>
<div class="flex justify-center mt-10 md:mt-32" style="z-index: 10;" x-data="countdown()"
x-init="start()">
<div class="text-blue-100">
<h1
class="md:text-3xl sm:text-xl text-center mb-3 font-extralight uppercase tracking-widest justify-center">
<span>
<div class="flex items-center justify-center pt-5 sm:pt-0 pl-2">
Finals happening in
<img alt="" class="w-10 h-10 animate-bounce"
src="assets/images/landing/rocket.svg" />
</div>
</span>
</h1>
<div class="md:text-6xl text-center flex lg:w-full md:w-full items-center justify-center">
<div class="md:w-32 mx- p-2 bg-white text-blue-500 rounded-lg sm:w-10">
<div class="font-mono leading-none" x-text="days">00</div>
<div class="font-mono uppercase text-sm leading-none">Days</div>
</div>
<div class="md:w-32 mx-1 p-2 bg-white text-blue-500 rounded-lg sm:w-10">
<div class="font-mono leading-none" x-text="hours">00</div>
<div class="font-mono uppercase text-sm leading-none">Hours</div>
</div>
<div class="md:w-32 mx-1 p-2 bg-white text-blue-500 rounded-lg sm:w-10">
<div class="font-mono leading-none" x-text="minutes">00</div>
<div class="font-mono uppercase text-sm leading-none">Minutes</div>
</div>
<div class="md:w-32 mx-1 p-2 bg-white text-blue-500 rounded-lg sm:w-min">
<div class="font-mono leading-none" x-text="seconds">00</div>
<div class="font-mono uppercase text-sm leading-none">Seconds</div>
</div>
</div>
<br>
</div>
</div>
<div class="mouse_scroll_animated">
<div class="mouse">
<div class="wheel"></div>
</div>
<div>
<span class="m_scroll_arrows one"></span>
<span class="m_scroll_arrows two"></span>
<span class="m_scroll_arrows three"></span>
</div>
</div>
</div>
</div>
<!-- What is Madhack? -->
<section class="bg-gray-100 border-b py-8">
<div class="container mx-auto flex flex-wrap pt-4 pb-12">
<h1 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800 uppercase">
What is Madhack?
<span>
<lord-icon class="w-20 h-20 sm:w-24 md:w-24 md:h-24 lg:w-24 lg:h-24 mb-5"
src="https://cdn.lordicon.com/iltqorsz.json" colors="primary:#121331,secondary:#3b82f6"
trigger="loop">
</lord-icon>
</span>
</h1>
<div class="w-full mb-4">
<div class="h-1 mx-auto bg-black w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="container text-white px-3 mx-auto flex flex-wrap flex-col md:flex-row items-center md:my-3">
<!--Left Col-->
<div class="flex flex-col w-full md:w-2/3 justify-center items-start text-center md:text-left p-2">
<div
class="flex-1 text-white rounded-lg bg-blue-500 shadow-2xl px-8 md:px-10 py-8 font-extralight m-4">
<p class="leading-normal text-xl md:text-2xl mb-1 md:mb-2 md:leading-relaxed">
Introducing Sri Lanka’s first Mobile Application Development Hackathon, the IEEE Student
Branch of UCSC proudly presents 'MadHack 2021', an inter-university hackathon followed
by a series of workshops. MadHack aims to let the participants put their creativity
and innovation to the test by giving them the opportunity to develop in any platform of
choice.
</p>
</div>
</div>
<!--Right Col-->
<div class="w-full md:w-1/3 py-6 text-center">
<img class="w-full md:w-4/5 z-50" src="assets/images/landing/what-is-madhack.webp" />
</div>
</div>
</div>
</section>
<!-- Curret event-->
<section class="bg-white border-b py-8">
<div class="container mx-auto flex flex-wrap pt-4 pb-12">
<h1 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800 uppercase">
Final Stage
<span>
<lord-icon class="w-20 h-20 sm:w-24 md:w-24 md:h-24 lg:w-24 lg:h-24 mb-5"
src="https://cdn.lordicon.com/wxnxiano.json" colors="primary:#121331,secondary:#3b82f6"
trigger="loop">
</lord-icon>
</span>
</h1>
<div class="w-full mb-4">
<div class="h-1 mx-auto bg-black w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="container text-white px-3 mx-auto flex flex-wrap flex-col md:flex-row items-center md:my-3">
<!--Left Col-->
<div class="flex flex-col w-full md:w-1/3 ">
<img class="w-full md:w-4/5" src="assets/images/landing/trophy.jpg" />
</div>
<!--Right Col-->
<div class="w-full md:w-2/3 py-6 justify-center items-start text-center md:text-left p-2">
<div
class="flex-1 text-white rounded-lg bg-blue-500 shadow-2xl px-8 md:px-10 py-8 font-extralight m-4">
<p class="leading-normal text-xl md:text-2xl mb-1 md:mb-2 md:leading-relaxed">
Like Thanos once said, "dread it, run from it, destiny arrives all the same". As much
fun as it has been, this journey too must end. MadHack has been one exciting ride and
this bitter sweet ending is something we can't wait to experience with you. Hold on
tight, because this is going to be the wildest part of it. See you there on the
<b>15th of August, 2021</b> and join with us to witness the end of something amazing :)
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Timeline -->
<section class="bg-black border-b py-8 timeline relative" id="timeline">
<div class="waveWrapper particleWrapper ground-me" id="particles"></div>
<div class="container max-w-5xl mx-auto m-8">
<h1 class="w-full my-2 text-5xl font-bold leading-tight text-center text-white uppercase bump-me">
<span>
<lord-icon class="w-14 h-14 sm:w-20 md:w-20 md:h-20 lg:w-20 lg:h-20"
colors="primary:#104891,secondary:#ffffff" src="https://cdn.lordicon.com//kbtmbyzy.json"
trigger="loop">
</lord-icon>
Timeline
</span>
</h1>
<div class="w-full mb-4 pb-2">
<div class="h-1 mx-auto bg-black w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="container mx-auto px-5 lg:px-4">
<div class="flex flex-col md:grid grid-cols-9 mx-auto p-2 text-blue-50">
<!-- left -->
<div class="flex flex-row-reverse md:contents">
<div class="bg-blue-500 col-start-1 col-end-5 p-4 rounded-xl my-4 ml-auto shadow-md bump-me"
data-aos="fade-right" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase">June 1st - Launch Event 🎉
</h3>
<p class="leading-normal text-justify mt-2">
We will be officially kicking off and opening registrations. Join our events and
stay connected with our social media to know the latest updates. See you soon
</p>
</div>
<div class="col-start-5 col-end-6 md:mx-auto relative mr-10">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow">
</div>
</div>
</div>
<!-- right -->
<div class="flex md:contents">
<div class="col-start-5 col-end-6 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
<div class="bg-blue-500 col-start-6 col-end-10 p-4 rounded-xl my-4 mr-auto shadow-md bump-me"
data-aos="fade-left" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest">June 13th - Workshop I
📚</h3>
<p class="leading-normal text-justify mt-2">
Conducted by one of our knowledge partners to give you an intro to mobile
application development and give you a head start. Those who wish to enter must
register beforehand. Don't brain lag :P
</p>
</div>
</div>
<!-- left -->
<div class="flex flex-row-reverse md:contents">
<div class="bg-blue-500 col-start-1 col-end-5 p-4 rounded-xl my-4 ml-auto shadow-md bump-me"
data-aos="fade-right" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest">June 27th - Workshop II
📚</h3>
<p class="leading-normal text-justify mt-2">
Conducted by one of our knowledge partners to give you an intro to mobile
application development and give you a head start. Those who wish to enter must
register beforehand. Don't brain lag :P
</p>
</div>
<div class="col-start-5 col-end-6 md:mx-auto relative mr-10">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
</div>
<div class="flex md:contents">
<div class="col-start-5 col-end-6 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
<div class="bg-blue-500 col-start-6 col-end-10 p-4 rounded-xl my-4 mr-auto shadow-md bump-me"
data-aos="fade-left" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest">July 17th - Workshop
III
📚</h3>
<p class="leading-normal text-justify">
Conducted by one of our knowledge partners to give you an intro to mobile
applicattion development to give you a head start. Those who wish to enter must
register beforehand.
</p>
</div>
</div>
<div class="flex flex-row-reverse md:contents">
<div class="bg-blue-500 col-start-1 col-end-5 p-4 rounded-xl my-4 ml-auto shadow-md bump-me"
data-aos="fade-right" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest"> July 25th - Idea
Stage Closes💡</h3>
<p class="leading-normal text-justify mt-2">
The Idea stage is when the proposal submissions are called. Participants are allowed
to choose <b class="text-base">any topic and category of choice</b>
to focus on in their proposal.
Please note that it is not allowed to submit a proposal
that has already been submitted to a competition before. Doing so will result in an
<b class="text-base">immediate disqualification</b> from the
competition.
</p>
</div>
<div class="col-start-5 col-end-6 md:mx-auto relative mr-10">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
</div>
<!-- right -->
<div class="flex md:contents">
<div class="col-start-5 col-end-6 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
<div class="bg-blue-500 col-start-6 col-end-10 p-4 rounded-xl my-4 mr-auto shadow-md bump-me"
data-aos="fade-left" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest">25th July to 31st July
-
Proposal Evaluation Stage 👩⚖️</h3>
<p class="leading-normal text-justify mt-2">
The proposal submitted during the idea stage will be evaluated during this period
and
the finalists will be announced on the <b class="text-base tracking-widest">1st of
August</b>
</p>
</div>
</div>
<div class="flex flex-row-reverse md:contents">
<div class="bg-blue-500 col-start-1 col-end-5 p-4 rounded-xl my-4 ml-auto shadow-md bump-me"
data-aos="fade-right" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest"> 3rd August to 13
August - Development
Stage 💻</h3>
<p>
<b class="text-base tracking-widest">The top 10 teams</b> from the idea stage will
be announced as finalists and they
will be advanced to the development stage. All finalists will be allocated a <b
class="text-base">
period of
one week</b> for developing the app and each team will be <b
class="text-base">assigned a
mentor</b> that will guide and evaluate them throughout this week.
</p>
</div>
<div class="col-start-5 col-end-6 md:mx-auto relative mr-10">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
</div>
<div class="flex md:contents">
<div class="col-start-5 col-end-6 mr-10 md:mx-auto relative">
<div class="h-full w-6 flex items-center justify-center">
<div class="h-full w-1 bg-blue-800 pointer-events-none"></div>
</div>
<div class="w-6 h-6 absolute top-1/2 -mt-3 rounded-full bg-blue-500 shadow"></div>
</div>
<div class="bg-blue-500 col-start-6 col-end-10 p-4 rounded-xl my-4 mr-auto shadow-md bump-me"
data-aos="fade-left" data-aos-easing="ease-in-sine" data-aos-offset="300">
<h3 class="font-semibold text-lg mb-1 uppercase tracking-widest">15th August -
FINALS 🤠</h3>
<p class="leading-normal text-justify mt-2">
This is the final stage of the competition. In this stage, each team will be given
20 minutes to pitch their product to the judges out of which <b class="text-base">15
mins will be
allocated
for the
presentation</b> and <b class="text-base">5 mins for the Q &
A</b>.
<strong class="">Judging Criteria for the Final Stage :
<br />
Final
score = UI + UX +
Usefulness +
Availability
</strong>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Prizes -->
<section class="bg-gray-100 py-8 pb-6 md:pb-12" id="prizes">
<div class="container mx-auto px-2 pt-4 pb-6 md:pb-12 text-gray-800">
<h1 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800 uppercase">
<span>Prizes <lord-icon class="w-20 h-20 sm:w-24 md:w-24 md:h-24 lg:w-24 lg:h-24 mb-5"
colors="primary:#104891,secondary:#242424" src="https://cdn.lordicon.com//lupuorrc.json"
trigger="loop">
</lord-icon></span>
</h1>
<div class="w-full mb-4">
<div class="h-1 mx-auto bg-black w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="flex flex-col sm:flex-row justify-center pt-6 md:pt-12 my-12 sm:my-4">
<div class="card bronze flex flex-col w-5/6 lg:w-1/4 mx-auto lg:mx-0 rounded lg:rounded-l-lg mt-4
bg-white text-gray-600 transform transition hover:scale-105 duration-300 ease-in-out">
<div class="overlay z-0"></div>
<div class="flex-1 rounded shadow z-10">
<div class="p-8 text-3xl font-bold text-center border-b-4">Third Place</div>
<div class="w-full px-4">
<img class="py-12 pb-5" src="assets/images/prizes/bronze.webp" />
</div>
<div class="flex-none overflow-hidden px-6 py-10 pt-5 font-bold text-center text-lg">
A cash prize of
<div class="w-full text-5xl font-bold text-center">
Rs. 20,000
</div>
+ swag + certificates + stickers
</div>
</div>
</div>
<div class="card gold flex flex-col w-5/6 lg:w-1/3 mx-auto lg:mx-0 rounded-lg bg-white mt-4 sm:-mt-6
shadow-lg z-10 transform transition hover:scale-105 duration-300 ease-in-out">
<div class="overlay z-0"></div>
<div class="flex-1 rounded shadow z-10">
<div class="h-1 w-full bg-black my-0 py-0 rounded-t"></div>
<div>
<div class="p-8 text-3xl font-bold text-center border-b-4">First Place</div>
<div class="w-full px-4">
<img class="py-10 px-10" src="assets/images/prizes/gold.webp" />
</div>
<div class="flex-none overflow-hidden px-6 pb-14 font-bold text-center text-lg">
A cash prize of
<div class="w-full text-6xl font-bold text-center">
Rs. 50,000
</div>
+ swag + certificates + stickers
</div>
</div>
</div>
</div>
<div class="card silver flex flex-col w-5/6 lg:w-1/4 mx-auto lg:mx-0 rounded lg:rounded-l-lg mt-4
bg-white text-gray-600 transform transition hover:scale-105 duration-300 ease-in-out">
<div class="overlay z-0"></div>
<div class="flex-1 rounded shadow z-10">
<div class="p-8 text-3xl font-bold text-center border-b-4">Second Place</div>
<div class="w-full px-4">
<img class="px-10 py-12 pb-10" src="assets/images/prizes/silver.webp" />
</div>
<div class="flex-none overflow-hidden px-6 pb-10 font-bold text-center text-lg mt-5">
A cash prize of
<div class="w-full text-5xl font-bold text-center">
Rs. 30,000
</div>
+ swag + certificates + stickers
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Instagram Feed -->
<section class="bg-white sponsors" id="instaFeed">
<div class="container mx-auto pb-2 pt-4 md:pt-6 text-gray-800 relative overflow-hidden">
<h1
class="w-full mb-2 mt-6 text-3xl sm:text-3xl md:text-5xl lg:text-5xl font-bold leading-tight text-center text-gray-800 uppercase">
<span>Keep in touch
<lord-icon class="w-20 h-20 sm:w-24 md:w-24 md:h-24 lg:w-24 lg:h-24 mb-5"
colors="primary:#121331,secondary:#104891" src="https://cdn.lordicon.com//tyounuzx.json"
trigger="loop" </lord-icon>
</span>
</h1>
<div class="w-full mb-8 pb-5">
<div class="h-1 mx-auto bg-black w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="w-5/6 md:w-2/3 pb-0 mx-auto mt-4 pt-4">
<div class="embedsocial-hashtag" data-ref="eb8cb624357d2017150230c762a4c2687fe0266f">
<script>(function (d, s, id) {
var js;
if (d.getElementById(id)) {
return;
}
js = d.createElement(s);
js.id = id;
js.src = "https://embedsocial.com/cdn/ht.js";
d.getElementsByTagName("head")[0].appendChild(js);
}(document, "script", "EmbedSocialHashtagScript"));</script>
</div>
</div>
</div>
</section>
<!-- Sponsors -->
<section class="bg-white sponsors" id="sponsors">
<div class="container mx-auto pb-4 pt-2 text-gray-800 relative overflow-hidden">
<h1
class="w-full mb-3 mt-2 text-3xl sm:text-3xl md:text-5xl lg:text-5xl font-bold leading-tight text-center text-gray-800 uppercase">
<span>Sponsors
<lord-icon class="w-20 h-20 sm:w-24 md:w-24 md:h-24 lg:w-24 lg:h-24 mb-5"
colors="primary:#104891,secondary:#242424" src="https://cdn.lordicon.com//rjzlnunf.json"
trigger="loop">
</lord-icon>
</span>
</h1>
<div class="w-full mb-5 pb-5">
<div class="h-1 mx-auto bg-black w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="w-full pb-5 mx-auto mt-2">
<div
class="p-12 pb-5 pt-2 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8 gap-y-6">
<!--Card 1-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="IFS logo"
class="w-full object-cover object-center rounded-lg shadow-lg p-0 border-2"
src="./assets/images/sponsors/IFS-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-gray-400 p-3 rounded-lg shadow-md border-2 text-white">
<h3 class="mt-1 text-lg font-semibold text-center">IFS R&D International (Pvt) Ltd
</h3>
<h4 class="mt-0 text-lg text-center">Platinum Sponsor</h4>
</div>
</div>
</div>
<!--Card 2-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Zone 24x7 logo"
class="w-full object-cover object-center rounded-lg shadow-lg p-8 border-2"
src="./assets/images/sponsors/Zone24x7-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-yellow-600 p-3 rounded-lg shadow-md border-2 text-white">
<h3 class="mt-1 text-lg font-semibold text-center">Zone 24x7</h3>
<h4 class="mt-0 text-lg text-center">Gold Sponsor</h4>
</div>
</div>
</div>
<!--Card 3-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="London Stock Exchange Group logo"
class="w-full object-cover object-center rounded-lg shadow-lg p-8 border-2"
src="assets/images/sponsors/LSEG-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-yellow-600 p-3 rounded-lg shadow-md border-2 text-white">
<h3 class="mt-1 text-lg font-semibold text-center">London Stock Exchange Group</h3>
<h4 class="mt-0 text-lg text-center">Gold Sponsor</h4>
</div>
</div>
</div>
<!--Card 4-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="CIMA logo"
class=" w-full object-cover object-center rounded-lg shadow-lg p-8 border-2"
src="assets/images/sponsors/CIMA-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-gray-500 text-white p-3 rounded-lg shadow-md border-2">
<h3 class="mt-1 text-lg font-semibold text-center">CIMA</h3>
<h4 class="mt-0 text-lg text-center">Silver Sponsor</h4>
</div>
</div>
</div>
<!--Card 5-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Rootcode Labs logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/Rootcode-Labs-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-gray-500 text-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Rootcode Labs</h3>
<h4 class="mt-0 text-lg text-center">Silver Sponsor</h4>
</div>
</div>
</div>
<!--Card 6-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="99x logo"
class=" w-full object-cover object-center rounded-lg shadow-lg p-8 border-2"
src="assets/images/sponsors/99x-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="mt-1 text-lg font-semibold text-center">99x Technology </h3>
</div>
</div>
</div>
<!--Card 7-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="CIC Speciality logo"
class="w-full object-cover object-center rounded-lg shadow-lg p-8 border-2"
src="assets/images/sponsors/Cisco-Speciality-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Cisco Speciality Packaging (Pvt)
Ltd</h3>
</div>
</div>
</div>
<!--Card 8-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="SIMCentric Technologies logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="./assets/images/sponsors/SIMCENTRIC-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">SimCentric Technologies</h3>
</div>
</div>
</div>
<!--Card 9-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Wisdom Business Academy logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="./assets/images/sponsors/Wisdom-Business-Academy-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Wisdom Business Academy</h3>
</div>
</div>
</div>
<!--Card 10-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Creative Software logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="./assets/images/sponsors/Creative-Software-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Creative Software</h3>
</div>
</div>
</div>
<!--Card 11-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Sysco Labs logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/Sysco-Labs-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Sysco Labs</h3>
</div>
</div>
</div>
<!--Card 12-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="GDG Sri Lanka logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/GDG-SL-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">GDG Sri Lanka</h3>
</div>
</div>
</div>
<!--Card 13-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Inova IT logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="./assets/images/sponsors/Inova-IT-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Inova IT</h3>
</div>
</div>
</div>
<!--Card 14-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Live College logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/Live-College-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Live College</h3>
</div>
</div>
</div>
<!--Card 15-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Commercial Bank logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/Commercial-Bank-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Commercial Bank</h3>
</div>
</div>
</div>
<!--Card 16-->
<div class="rounded overflow-hidden px-4 pt-2 pb-3" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Pahasara logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/Pahasara-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Pahasara - පැහැසර</h3>
</div>
</div>
</div>
<!--Card 17-->
<div class="rounded overflow-hidden px-4 pt-2 pb-4" data-aos="flip-left"
data-aos-duration="1000" data-aos-easing="ease-out-cubic">
<img alt="Hackathons.lk logo"
class="w-full object-cover object-center rounded-lg shadow-xl p-6 border-2"
src="assets/images/sponsors/Hackathons-lk-logo.png">
<div class="relative mx-8 -mt-10">
<div class="bg-white p-3 rounded-lg shadow-md border-2">
<h3 class="my-1 text-lg font-semibold text-center">Hackathons.lk</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQs -->
<section class="bg-gray-100 faqs" id="frequently-asked">
<div class="container mx-auto px-2 pt-2 text-gray-800 relative overflow-hidden">
<h1
class="w-full mb-3 mt-6 text-3xl sm:text-3xl md:text-5xl lg:text-5xl font-bold leading-tight text-center text-gray-800 uppercase">
<span>Frequently Asked Questions
<lord-icon class="w-20 h-20 sm:w-28 md:w-36 md:h-36 lg:w-36 lg:h-36"
colors="primary:#104891,secondary:#000000" src="https://cdn.lordicon.com//zbopvjaq.json"
trigger="loop">
</lord-icon>
</span>
</h1>
<div class="w-full mb-4">
<div class="h-1 mx-auto bg-black w-96 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="max-w-screen-xl mx-auto px-6 lg:px-8 xl:px-4 relative z-20 mt-10">
<div class="mb-12 lg:mb-20" x-data="{selected:null}">
<ul class="divide-y divide-gray-300 text-base md:text-lg">
<li class="relative">
<button @click="selected !== 1 ? selected = 1 : selected = null"
class="py-3 lg:py-4 font-bold focus:outline-none hover:text-blue-600 w-full flex items-center justify-between"
type="button">
<span class="flex-1 text-left pr-6">
What is the registration process?
</span>
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"></path>
</svg>
</button>
<div class="relative overflow-hidden transition-all max-h-0 duration-700"
x-bind:style="selected == 1 ? 'max-height: ' + $refs.container1.scrollHeight + 'px' : ''"
x-ref="container1">
<div class="p-6 bg-blue-500 text-white rounded">
We will be posting the announcements on our social media and the registration
links
will be available on our site. You will be required to register for the workshop
and
compettion seperately.
</div>
</div>
</li>
<li class="relative">
<button @click="selected !== 2 ? selected = 2 : selected = null"
class="py-3 lg:py-4 font-bold focus:outline-none hover:text-blue-600 w-full flex items-center justify-between"
type="button">
<span class="flex-1 text-left pr-6">
What are the phases of the competition?
</span>
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"></path>
</svg>
</button>
<div class="relative overflow-hidden transition-all max-h-0 duration-700"
x-bind:style="selected == 2 ? 'max-height: ' + $refs.container2.scrollHeight + 'px' : ''"
x-ref="container2">
<div class="p-6 bg-blue-500 text-white rounded">
The competition will have three phases; the proposal submission phase, the
implementation phase and the judging phase. The proposal submission stage will
be
open to all participants. The implementation stage will be for the top 10 teams
selected from
the proposal submissions.
</div>
</div>
</li>
<li class="relative">
<button @click="selected !== 3 ? selected = 3 : selected = null"
class="py-3 lg:py-4 font-bold focus:outline-none hover:text-blue-600 w-full flex items-center justify-between"
type="button">
<span class="flex-1 text-left pr-6">
Do teams need to know how to build a mobile app to enter the contest?
</span>
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"></path>
</svg>
</button>
<div class="relative overflow-hidden transition-all max-h-0 duration-700"
x-bind:style="selected == 3 ? 'max-height: ' + $refs.container3.scrollHeight + 'px' : ''"
x-ref="container3">
<div class="p-6 bg-blue-500 text-white rounded">
If your team gets selected to the final stage, you will be asked to implement
the
application proposed, but if you'e currently not comfortable with mobile
development
our workshops would help you to some extent.
</div>
</div>
</li>
<li class="relative">
<button @click="selected !== 4 ? selected = 4 : selected = null"
class="py-3 lg:py-4 font-bold focus:outline-none hover:text-blue-600 w-full flex items-center justify-between"
type="button">
<span class="flex-1 text-left pr-6">
Are there any restrictions on the programming languages?
</span>
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"></path>
</svg>
</button>
<div class="relative overflow-hidden transition-all max-h-0 duration-700"
x-bind:style="selected == 4 ? 'max-height: ' + $refs.container4.scrollHeight + 'px' : ''"
x-ref="container4">
<div class="p-6 bg-blue-500 text-white rounded">
No, you are free to use whatever framework or programming language as you wish.
Go
crazy and may the best app win!
</div>
</div>
</li>
<li class="relative">
<button @click="selected !== 5 ? selected = 5 : selected = null"
class="py-3 lg:py-4 font-bold focus:outline-none hover:text-blue-600 w-full flex items-center justify-between"
type="button">
<span class="flex-1 text-left pr-6">
How will the final app be chosen?
</span>
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"></path>
</svg>
</button>
<div class="relative overflow-hidden transition-all max-h-0 duration-700"