-
Notifications
You must be signed in to change notification settings - Fork 3
/
team.html
1052 lines (937 loc) · 73.7 KB
/
team.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>
<head>
<title>HackOFiesta</title>
<meta name="description" content="Hack o Fiesta is IIIT Lucknow's annual hackathon" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/imgs/logo.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/imgs/logo.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/imgs/logo.png">
<link rel="manifest" href="assets/imgs/logo.png">
<link rel="mask-icon" href="assets/imgs/logo.png" color="#5bbad5">
<link rel="shortcut icon" href="assets/imgs/logo.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-config" content="assets/imgs/logo.png">
<meta name="theme-color" content="#ffffff">
<meta property="og:type" content="website" />
<meta property="og:title" content="HackOFiesta V4" />
<meta
property="og:description"
content="The annual 36 hr global hackathon of IIIT Lucknow."
/>
<meta property="og:url" content="https://hof-v4.netlify.app/" />
<meta property="og:site_name" content="HackOFiesta V4" />
<meta property="og:image" content="./assets/imgs/logo.png" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta name="twitter:card" content="summary" />
<meta
name="twitter:description"
content="Hack o Fiesta is IIIT Lucknow's annual hackathon"
/>
<meta name="twitter:title" content="HackOFiesta V4" />
<meta name="twitter:site" content="https://hof-v4.netlify.app/" />
<meta name="twitter:image" content="./assets/imgs/logo.png" />
<meta name="twitter:creator" content="IIIT Lucknow" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="/scss/style.css" />
<link rel="stylesheet" href="https://barba.js.org/scss/main.css" type="text/css" media="all">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136431166-1"></script>
<script>
window.GTAG_ID = 'UA-136431166-1';
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-136431166-1');
</script>
<script>
window.BARBA = {
root: '/',
menu: JSON.parse('[{"title":"Features","url":"features/user-friendly/","slug":"/features","subpages":[{"title":"User friendly","url":"features/user-friendly/"},{"title":"Easy peasy","url":"features/easy-peasy/"},{"title":"Smart","url":"features/smart/"},{"title":"Extensible","url":"features/extensible/"},{"title":"About","url":"/about.html"},{"title":"Community","url":"features/community/"}]},{"title":"Examples","url":"examples/","slug":"/examples"},{"title":"Showcases","url":"showcase/","slug":"/showcase"},{"title":"Docs","url":"docs/getstarted/intro/","slug":"/docs"},{"title":"FAQ","url":"faq/","slug":"/faq"}]'),
docs: JSON.parse('[{"title":"Get Started","url":"docs/getstarted/intro/","path":"docs/getstarted","subpages":[{"title":"Intro","url":"docs/getstarted/intro/"},{"title":"Install","url":"docs/getstarted/install/"},{"title":"Markup","url":"docs/getstarted/markup/"},{"title":"Basic transition","url":"docs/getstarted/basic-transition/"},{"title":"Run custom code","url":"docs/getstarted/custom-code/"},{"title":"Lifecycle","url":"docs/getstarted/lifecycle/"},{"title":"Legacy example","url":"docs/getstarted/legacy/"},{"title":"Browser support","url":"docs/getstarted/browser-support/"},{"title":"Useful links","url":"docs/getstarted/useful-links/"}]},{"title":"Advanced","url":"docs/advanced/hooks/","path":"docs/advanced","subpages":[{"title":"Hooks","url":"docs/advanced/hooks/"},{"title":"Transitions","url":"docs/advanced/transitions/"},{"title":"Views","url":"docs/advanced/views/"},{"title":"Strategies","url":"docs/advanced/strategies/"},{"title":"Recipes","url":"docs/advanced/recipes/"},{"title":"Third party scripts","url":"docs/advanced/third-party/"},{"title":"Utils","url":"docs/advanced/utils/"},{"title":"Developer API","url":"api/","path":"api","extern":true}]},{"title":"Plugins","url":"docs/plugins/intro/","path":"docs/plugins","subpages":[{"title":"Intro","url":"docs/plugins/intro/"},{"title":"Router","url":"docs/plugins/router/"},{"title":"Prefetch","url":"docs/plugins/prefetch/"},{"title":"Css","url":"docs/plugins/css/"},{"title":"Head","url":"docs/plugins/head/"},{"title":"Preset","url":"docs/plugins/preset/"}]}]'),
}
document.documentElement.classList.add('js');
</script>
<meta name="generator" content="Hexo 4.2.1">
</head>
<body data-barba="wrapper" data-slug="Team">
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol viewBox="0 0 21 15" id="barba-arrow-next" xmlns="http://www.w3.org/2000/svg">
<path
d="M16.243 8.142H0v-2h16.385l-4.728-4.728L13.07 0l5.657 5.657 1.414 1.414-7.07 7.071-1.415-1.414 4.586-4.586z"
fill-rule="evenodd" />
</symbol>
<symbol viewBox="0 0 21 15" id="barba-arrow-prev" xmlns="http://www.w3.org/2000/svg">
<path d="M4.757 8.142H21v-2H4.615l4.728-4.728L7.93 0 2.272 5.657.858 7.07l7.07 7.071 1.415-1.414-4.586-4.586z"
fill-rule="evenodd" />
</symbol>
<symbol viewBox="0 0 32 32" id="barba-b" xmlns="http://www.w3.org/2000/svg">
<defs>
<path d="M8 10c-4.418 0-8 3.59-8 8 0 4.418 3.59 8 8 8H0V0h8v10z" id="ca" />
</defs>
<g fill-rule="evenodd">
<use stroke-width="2" xlink:href="#ca" transform="translate(9.5 3)" />
<path d="M9.5 21c0 4.418 3.59 8 8 8h0c4.418 0 8-3.59 8-8h0c0-4.418-3.59-8-8-8h0c-4.418 0-8 3.59-8 8h0z"
stroke-width="2" />
</g>
</symbol>
<symbol id="barba-download" viewBox="0 0 37.1 37.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<style>
.dst0 {
fill-rule: evenodd;
clip-rule: evenodd
}
.dst0,
.dst1 {
fill: #2e5bdc
}
</style>
<g transform="translate(-463 -796)">
<g id="dGroup-17" transform="translate(160 546)">
<g id="dGroup-15" transform="translate(303 250)">
<g id="dGroup-7">
<path id="dCombined-Shape-Copy-2" class="dst0"
d="M16.5 20.8l-5.3-5.3-2.9 2.9 7.5 7.5 2.9 2.9 10.5-10.5-2.9-2.9-5.6 5.6V4h-4.1v16.8z" />
<path id="dOval-4" class="dst1"
d="M18.6 33c8 0 14.4-6.5 14.4-14.4S26.5 4.1 18.6 4.1 4.1 10.6 4.1 18.6 10.6 33 18.6 33zm0 4.1C8.3 37.1 0 28.8 0 18.6S8.3 0 18.6 0s18.6 8.3 18.6 18.6-8.4 18.5-18.6 18.5z" />
</g>
</g>
</g>
</g>
</symbol>
<symbol id="barba-external" viewBox="0 0 30 30" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<style>
.est0 {
fill: #2e5bdc
}
</style>
<g transform="translate(-880 -939)">
<g id="eGroup-3-Copy" transform="translate(540 699)">
<g id="eGroup-2" transform="translate(5 240)">
<g id="eGroup-4" transform="translate(291)">
<g id="eGroup" transform="translate(44)">
<path id="eRectangle" class="est0"
d="M24 26v-6h4v6c0 2.2-1.8 4-4 4H4c-2.2 0-4-1.8-4-4V6c0-2.2 1.8-4 4-4h6v4H4v20h20zM10 6H4v20h20v-6h4v6c0 2.2-1.8 4-4 4H4c-2.2 0-4-1.8-4-4V6c0-2.2 1.8-4 4-4h6v4zm13.3-2H16V0h14v14h-4V7l-7.3 7.3-2.8-2.8L23.3 4z" />
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="barba-eye" viewBox="0 0 47.7 35.8" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<style>
.fst0,
.fst1 {
fill: #2e5bdc
}
.fst1 {
fill-rule: evenodd;
clip-rule: evenodd
}
</style>
<g transform="translate(-165 -796)">
<g id="fGroup-17" transform="translate(160 546)">
<g id="fGroup-6" transform="translate(5 250)">
<g id="fGroup-5">
<path id="fCombined-Shape" class="fst0"
d="M24.6 31c6.5 0 12.4-3.8 15.1-9.5C37 15.8 31.2 12 24.6 12s-12.4 3.8-15.1 9.5C12.2 27.2 18 31 24.6 31zm0-23.8c9.3 0 17.3 6 20.2 14.3-2.9 8.3-10.9 14.3-20.2 14.3s-17.3-6-20.2-14.3C7.3 13.1 15.2 7.2 24.6 7.2z" />
<path class="fst0"
d="M7.1 13.6c2.8-5.7 9-8.8 17.5-8.8S39.2 7.9 42 13.6h5.2C43.9 4.3 35 0 24.6 0S5.2 4.3 1.9 13.6h5.2zm17.5-8.8c8.5 0 14.7 3.1 17.5 8.8h5.2C43.9 4.3 35 0 24.6 0S5.2 4.3 1.9 13.6h5.2c2.8-5.7 9-8.8 17.5-8.8z" />
<circle id="fOval-3" class="fst1" cx="24.6" cy="21.5" r="4.8" />
</g>
</g>
</g>
</g>
</symbol>
<symbol viewBox="0 0 13 15" id="barba-github" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.259 15c.376 0 .359-.75.359-1 0-.223-.009-.815-.013-1.6-2.633.569-3.189-1.26-3.189-1.26-.43-1.087-1.05-1.377-1.05-1.377-.86-.583.065-.572.065-.572.95.067 1.45.97 1.45.97.844 1.437 2.214 1.022 2.754.781.086-.608.33-1.022.6-1.257-2.1-.238-4.31-1.045-4.31-4.65 0-1.026.368-1.866.974-2.524-.098-.238-.422-1.194.092-2.49 0 0 .795-.252 2.603.965a9.138 9.138 0 012.37-.317 9.148 9.148 0 012.37.317C11.14-.231 11.932.022 11.932.022c.516 1.295.192 2.251.094 2.49.607.657.973 1.497.973 2.524 0 3.613-2.213 4.409-4.321 4.642.34.29.642.864.642 1.742 0 1.257-.011 2.271-.011 2.58 0 .252 0 1 .357 1H4.26z"
fill-rule="nonzero" />
</symbol>
<symbol viewBox="0 0 50 50" id="barba-submit" xmlns="http://www.w3.org/2000/svg">
<style>
.hst0,
.hst1 {
fill-rule: evenodd;
clip-rule: evenodd
}
.hst0 {
fill: #2e5bdc
}
.hst1 {
stroke: #2e5bdc
}
.hcross {
fill: #fff
}
</style>
<path class="hst0"
d="M25 40c8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15z" />
<path class="hst1" opacity=".2"
d="M48.5 25c0 12.979-10.521 23.5-23.5 23.5S1.5 37.979 1.5 25 12.021 1.5 25 1.5 48.5 12.021 48.5 25z"
stroke-width="3" />
<g class="hcross">
<rect x="19" y="24" width="12" height="2" rx="1" />
<rect x="24" y="19" width="2" height="12" rx="1" />
</g>
</symbol>
<symbol viewBox="0 0 9 9" id="barba-triangle" xmlns="http://www.w3.org/2000/svg">
<path
d="M7.989 3.85L1.564.638C.91.311.5.564.5 1.297v6c0 .738.406.988 1.064.659L7.99 4.744c.618-.31.618-.584 0-.894z"
fill-rule="evenodd" />
</symbol>
<symbol class="jbarba-upload" viewBox="0 0 52 41" id="barba-upload" xmlns="http://www.w3.org/2000/svg">
<path
d="M24.657 1.414L18 8.071l1.414 1.414L25 3.9V30h2V3.757l5.728 5.728 1.414-1.414-6.657-6.657L26.071 0l-1.414 1.414z"
stroke-width="2" />
<path d="M51 20v15a5 5 0 01-5 5H6a5 5 0 01-5-5V20" stroke-width="2" />
</symbol>
<symbol viewBox="0 0 32 32" id="social-github" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.685 28.205c.556 0 .53-1.12.53-1.493 0-.334-.012-1.217-.019-2.39-3.894.85-4.716-1.885-4.716-1.885-.636-1.623-1.554-2.055-1.554-2.055-1.271-.873.096-.855.096-.855 1.405.1 2.144 1.449 2.144 1.449 1.25 2.148 3.277 1.527 4.075 1.167.127-.908.489-1.528.889-1.879-3.109-.355-6.377-1.56-6.377-6.946 0-1.535.545-2.79 1.441-3.772-.144-.356-.625-1.784.137-3.72 0 0 1.176-.377 3.85 1.441a13.39 13.39 0 013.505-.473c1.189.006 2.387.161 3.505.473 2.672-1.818 3.846-1.44 3.846-1.44.764 1.935.283 3.363.139 3.719.898.983 1.44 2.237 1.44 3.772 0 5.4-3.274 6.588-6.393 6.936.503.434.95 1.29.95 2.602 0 1.88-.017 3.395-.017 3.856 0 .376 0 1.495.529 1.493 0 .002-8 0-8 0z"
fill-rule="nonzero" />
</symbol>
<symbol viewBox="0 0 32 32" id="social-twitter" xmlns="http://www.w3.org/2000/svg">
<path
d="M25.655 12.559c.01.192.013.386.013.577 0 5.904-4.492 12.708-12.706 12.708-2.523 0-4.869-.74-6.846-2.007.35.041.705.062 1.065.062a8.963 8.963 0 005.546-1.91 4.47 4.47 0 01-4.171-3.1 4.564 4.564 0 002.017-.078 4.47 4.47 0 01-3.582-4.38v-.056a4.455 4.455 0 002.023.56A4.466 4.466 0 017.632 8.97a12.677 12.677 0 009.205 4.667 4.51 4.51 0 01-.115-1.019 4.463 4.463 0 014.465-4.463 4.46 4.46 0 013.26 1.409 8.993 8.993 0 002.836-1.084 4.482 4.482 0 01-1.964 2.47 8.933 8.933 0 002.565-.702 9.018 9.018 0 01-2.23 2.31z"
fill-rule="nonzero" />
</symbol>
<symbol viewBox="0 0 30 31" id="ui-flexible" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(-4 -1)" fill-rule="evenodd">
<rect opacity=".3" x="16" y="1" width="18" height="18" rx="9" />
<rect x="22" y="7" width="6" height="6" rx="3" />
<rect x="5" y="7" width="6" height="6" rx="3" />
<rect x="5" y="25" width="6" height="6" rx="3" />
<rect x="23" y="25" width="6" height="6" rx="3" />
<g stroke-linecap="square" stroke-width="2">
<path d="M8 17v4M8 21l-2-2M10 19l-2 2" />
</g>
<g stroke-linecap="square" stroke-width="2">
<path d="M19 28h-4M15 28l2-2M17 30l-2-2" />
</g>
</g>
</symbol>
</svg>
<div data-barba="container" data-barba-namespace="feature" data-feature-order="4">
</head>
<body data-barba="wrapper" data-slug="home">
<!-- <?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 21 15" id="barba-arrow-next" xmlns="http://www.w3.org/2000/svg"><path d="M16.243 8.142H0v-2h16.385l-4.728-4.728L13.07 0l5.657 5.657 1.414 1.414-7.07 7.071-1.415-1.414 4.586-4.586z" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 21 15" id="barba-arrow-prev" xmlns="http://www.w3.org/2000/svg"><path d="M4.757 8.142H21v-2H4.615l4.728-4.728L7.93 0 2.272 5.657.858 7.07l7.07 7.071 1.415-1.414-4.586-4.586z" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 32 32" id="barba-b" xmlns="http://www.w3.org/2000/svg"><defs><path d="M8 10c-4.418 0-8 3.59-8 8 0 4.418 3.59 8 8 8H0V0h8v10z" id="ca"/></defs><g fill-rule="evenodd"><use stroke-width="2" xlink:href="#ca" transform="translate(9.5 3)"/><path d="M9.5 21c0 4.418 3.59 8 8 8h0c4.418 0 8-3.59 8-8h0c0-4.418-3.59-8-8-8h0c-4.418 0-8 3.59-8 8h0z" stroke-width="2"/></g></symbol><symbol id="barba-download" viewBox="0 0 37.1 37.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><style>.dst0{fill-rule:evenodd;clip-rule:evenodd}.dst0,.dst1{fill:#2e5bdc}</style><g transform="translate(-463 -796)"><g id="dGroup-17" transform="translate(160 546)"><g id="dGroup-15" transform="translate(303 250)"><g id="dGroup-7"><path id="dCombined-Shape-Copy-2" class="dst0" d="M16.5 20.8l-5.3-5.3-2.9 2.9 7.5 7.5 2.9 2.9 10.5-10.5-2.9-2.9-5.6 5.6V4h-4.1v16.8z"/><path id="dOval-4" class="dst1" d="M18.6 33c8 0 14.4-6.5 14.4-14.4S26.5 4.1 18.6 4.1 4.1 10.6 4.1 18.6 10.6 33 18.6 33zm0 4.1C8.3 37.1 0 28.8 0 18.6S8.3 0 18.6 0s18.6 8.3 18.6 18.6-8.4 18.5-18.6 18.5z"/></g></g></g></g></symbol><symbol id="barba-external" viewBox="0 0 30 30" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><style>.est0{fill:#2e5bdc}</style><g transform="translate(-880 -939)"><g id="eGroup-3-Copy" transform="translate(540 699)"><g id="eGroup-2" transform="translate(5 240)"><g id="eGroup-4" transform="translate(291)"><g id="eGroup" transform="translate(44)"><path id="eRectangle" class="est0" d="M24 26v-6h4v6c0 2.2-1.8 4-4 4H4c-2.2 0-4-1.8-4-4V6c0-2.2 1.8-4 4-4h6v4H4v20h20zM10 6H4v20h20v-6h4v6c0 2.2-1.8 4-4 4H4c-2.2 0-4-1.8-4-4V6c0-2.2 1.8-4 4-4h6v4zm13.3-2H16V0h14v14h-4V7l-7.3 7.3-2.8-2.8L23.3 4z"/></g></g></g></g></g></symbol><symbol id="barba-eye" viewBox="0 0 47.7 35.8" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><style>.fst0,.fst1{fill:#2e5bdc}.fst1{fill-rule:evenodd;clip-rule:evenodd}</style><g transform="translate(-165 -796)"><g id="fGroup-17" transform="translate(160 546)"><g id="fGroup-6" transform="translate(5 250)"><g id="fGroup-5"><path id="fCombined-Shape" class="fst0" d="M24.6 31c6.5 0 12.4-3.8 15.1-9.5C37 15.8 31.2 12 24.6 12s-12.4 3.8-15.1 9.5C12.2 27.2 18 31 24.6 31zm0-23.8c9.3 0 17.3 6 20.2 14.3-2.9 8.3-10.9 14.3-20.2 14.3s-17.3-6-20.2-14.3C7.3 13.1 15.2 7.2 24.6 7.2z"/><path class="fst0" d="M7.1 13.6c2.8-5.7 9-8.8 17.5-8.8S39.2 7.9 42 13.6h5.2C43.9 4.3 35 0 24.6 0S5.2 4.3 1.9 13.6h5.2zm17.5-8.8c8.5 0 14.7 3.1 17.5 8.8h5.2C43.9 4.3 35 0 24.6 0S5.2 4.3 1.9 13.6h5.2c2.8-5.7 9-8.8 17.5-8.8z"/><circle id="fOval-3" class="fst1" cx="24.6" cy="21.5" r="4.8"/></g></g></g></g></symbol><symbol viewBox="0 0 13 15" id="barba-github" xmlns="http://www.w3.org/2000/svg"><path d="M4.259 15c.376 0 .359-.75.359-1 0-.223-.009-.815-.013-1.6-2.633.569-3.189-1.26-3.189-1.26-.43-1.087-1.05-1.377-1.05-1.377-.86-.583.065-.572.065-.572.95.067 1.45.97 1.45.97.844 1.437 2.214 1.022 2.754.781.086-.608.33-1.022.6-1.257-2.1-.238-4.31-1.045-4.31-4.65 0-1.026.368-1.866.974-2.524-.098-.238-.422-1.194.092-2.49 0 0 .795-.252 2.603.965a9.138 9.138 0 012.37-.317 9.148 9.148 0 012.37.317C11.14-.231 11.932.022 11.932.022c.516 1.295.192 2.251.094 2.49.607.657.973 1.497.973 2.524 0 3.613-2.213 4.409-4.321 4.642.34.29.642.864.642 1.742 0 1.257-.011 2.271-.011 2.58 0 .252 0 1 .357 1H4.26z" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 50 50" id="barba-submit" xmlns="http://www.w3.org/2000/svg"><style>.hst0,.hst1{fill-rule:evenodd;clip-rule:evenodd}.hst0{fill:#2e5bdc}.hst1{stroke:#2e5bdc}.hcross{fill:#fff}</style><path class="hst0" d="M25 40c8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15z"/><path class="hst1" opacity=".2" d="M48.5 25c0 12.979-10.521 23.5-23.5 23.5S1.5 37.979 1.5 25 12.021 1.5 25 1.5 48.5 12.021 48.5 25z" stroke-width="3"/><g class="hcross"><rect x="19" y="24" width="12" height="2" rx="1"/><rect x="24" y="19" width="2" height="12" rx="1"/></g></symbol><symbol viewBox="0 0 9 9" id="barba-triangle" xmlns="http://www.w3.org/2000/svg"><path d="M7.989 3.85L1.564.638C.91.311.5.564.5 1.297v6c0 .738.406.988 1.064.659L7.99 4.744c.618-.31.618-.584 0-.894z" fill-rule="evenodd"/></symbol><symbol class="jbarba-upload" viewBox="0 0 52 41" id="barba-upload" xmlns="http://www.w3.org/2000/svg"><path d="M24.657 1.414L18 8.071l1.414 1.414L25 3.9V30h2V3.757l5.728 5.728 1.414-1.414-6.657-6.657L26.071 0l-1.414 1.414z" stroke-width="2"/><path d="M51 20v15a5 5 0 01-5 5H6a5 5 0 01-5-5V20" stroke-width="2"/></symbol><symbol viewBox="0 0 32 32" id="social-github" xmlns="http://www.w3.org/2000/svg"><path d="M12.685 28.205c.556 0 .53-1.12.53-1.493 0-.334-.012-1.217-.019-2.39-3.894.85-4.716-1.885-4.716-1.885-.636-1.623-1.554-2.055-1.554-2.055-1.271-.873.096-.855.096-.855 1.405.1 2.144 1.449 2.144 1.449 1.25 2.148 3.277 1.527 4.075 1.167.127-.908.489-1.528.889-1.879-3.109-.355-6.377-1.56-6.377-6.946 0-1.535.545-2.79 1.441-3.772-.144-.356-.625-1.784.137-3.72 0 0 1.176-.377 3.85 1.441a13.39 13.39 0 013.505-.473c1.189.006 2.387.161 3.505.473 2.672-1.818 3.846-1.44 3.846-1.44.764 1.935.283 3.363.139 3.719.898.983 1.44 2.237 1.44 3.772 0 5.4-3.274 6.588-6.393 6.936.503.434.95 1.29.95 2.602 0 1.88-.017 3.395-.017 3.856 0 .376 0 1.495.529 1.493 0 .002-8 0-8 0z" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 32 32" id="social-twitter" xmlns="http://www.w3.org/2000/svg"><path d="M25.655 12.559c.01.192.013.386.013.577 0 5.904-4.492 12.708-12.706 12.708-2.523 0-4.869-.74-6.846-2.007.35.041.705.062 1.065.062a8.963 8.963 0 005.546-1.91 4.47 4.47 0 01-4.171-3.1 4.564 4.564 0 002.017-.078 4.47 4.47 0 01-3.582-4.38v-.056a4.455 4.455 0 002.023.56A4.466 4.466 0 017.632 8.97a12.677 12.677 0 009.205 4.667 4.51 4.51 0 01-.115-1.019 4.463 4.463 0 014.465-4.463 4.46 4.46 0 013.26 1.409 8.993 8.993 0 002.836-1.084 4.482 4.482 0 01-1.964 2.47 8.933 8.933 0 002.565-.702 9.018 9.018 0 01-2.23 2.31z" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 30 31" id="ui-flexible" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-4 -1)" fill-rule="evenodd"><rect opacity=".3" x="16" y="1" width="18" height="18" rx="9"/><rect x="22" y="7" width="6" height="6" rx="3"/><rect x="5" y="7" width="6" height="6" rx="3"/><rect x="5" y="25" width="6" height="6" rx="3"/><rect x="23" y="25" width="6" height="6" rx="3"/><g stroke-linecap="square" stroke-width="2"><path d="M8 17v4M8 21l-2-2M10 19l-2 2"/></g><g stroke-linecap="square" stroke-width="2"><path d="M19 28h-4M15 28l2-2M17 30l-2-2"/></g></g></symbol></svg> -->
<div data-barba="container" data-barba-namespace="home">
<header class="site-header header" role="banner" data-component="header">
<div class="header__wrapper">
<div class="header__infos">
<a class="header__infos__logo" href="/" onclick="window.location.assign(this.href)" onclick="window.location.assign(this.href)">
<img src="assets/imgs/Frame 2.svg" alt="HOF V4" class="kool1 logoNoHovered" id="logo_nohover" />
<img src="assets/imgs/Group 10.svg" alt="HOF V4" class="kool1 logoHovered" id="logo_hover" />
<span class="h-visually-hidden">Go to home</span>
<!-- <svg viewBox="0 0 32 32" aria-hidden="true" class="icon--barba">
<use xlink:href="#barba-b"></use>
</svg> -->
<!-- <img src="assets/imgs/logo.png" alt="HOF V4 logo" class="kool1"> -->
</a>
<span class="header__infos__version">
<span>4.0</span>
<!-- <span data-component="barba-version">4.0</span> -->
</span>
</div>
<div class="header__external-links">
<!-- <svg viewBox="0 0 32 32" aria-hidden="true" class="icon">
<use xlink:href="#social-github"></use>
</svg> -->
</a>
<div class="menu-trigger" data-component="menu-trigger">
<svg viewbox="0 0 50 50" width="50" height="50" class="menu-trigger__shape">
<circle r="25" cx="25" cy="25"></circle>
</svg>
<span class="menu-trigger__bar"></span>
<span class="menu-trigger__bar"></span>
<span class="menu-trigger__bar"></span>
</div>
</div>
</div>
<nav class="header__nav nav">
<div class="menu" data-component="menu">
<div class="menu__overlay" data-ref="menu.overlay"></div>
<!-- Menu Nav -->
<div class="menu__panel" data-ref="menu.panel">
<!-- Menu Pages -->
<div class="menu__pages">
<ul class="menu__pages__list">
<!-- Page -->
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="./about.html" onclick="window.location.assign(this.href)">
About
</a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="/theme.html" onclick="window.location.assign(this.href)">
Theme
</a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="/prizes.html" onclick="window.location.assign(this.href)">
Prizes
</a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="/speaker.html" onclick="window.location.assign(this.href)">
Speakers
</a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="./sponsers.html" onclick="window.location.assign(this.href)">
Sponsors
</a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="/team.html" onclick="window.location.assign(this.href)"> Team </a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<li class="menu__pages__item" data-ref="menu.item">
<a class="menu__pages__item__link" href="/faq.html" onclick="window.location.assign(this.href)"> Faq </a>
<!-- Subpages -->
<!-- Subpages [end]-->
</li>
<!-- Page [end]-->
</ul>
</div>
<!-- Menu Pages [end]-->
<!-- Menu Footer -->
<div class="menu__footer">
<a class="menu__footer__download" href="#" data-ref="menu.item" onclick="window.location.assign(this.href)">
REGISTER
</a>
<div class="menu__footer__extra menu-extra">
<a class="menu-extra__twitter" href="https://twitter.com/hackofiesta" target="_blank" data-barba-prevent
data-ref="menu.item" onclick="window.location.assign(this.href)">
<svg class="menu-extra__twitter__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 13">
<path
d="M14.4487 3.221153c.00693.140201.00952.282132.00952.422333 0 4.318526-3.28606 9.296514-9.294778 9.296514-1.845976 0-3.562135-.540898-5.008279-1.468645.256169.03029.5158.045868.778893.045868 1.531821 0 2.939886-.522724 4.057164-1.397679-1.428835-.026829-2.636118-.970154-3.051528-2.268308.199051.037213.404159.057118.61446.057118.298575 0 .587631-.038944.861109-.113372C1.920653 7.493811.79472 6.174021.79472 4.590273v-.040676c.440507.244919.945057.392043 1.479896.409351C1.397929 4.372183.820683 3.37347.820683 2.238883c0-.598016.160972-1.159684.443104-1.642598 1.610576 1.977522 4.019085 3.277407 6.733958 3.414146-.055388-.239726-.083948-.488106-.083948-.745141C7.913797 1.461721 9.375519 0 11.17995 0c.93987 0 1.78886.395504 2.38514 1.030734.74341-.147124 1.44269-.418871 2.07445-.792739-.24405.762449-.76244 1.402872-1.43662 1.80703.66119-.07962 1.2895-.253572 1.87627-.514069-.43791.656001-.99179 1.23065-1.63049 1.690197z" />
</svg>
<div class="menu-extra__twitter__label">HOF_twit1</div>
</a>
<div class="menu-extra__credits" data-ref="menu.item">
<a href="https://discord.gg/8VK8jMt63j"><img src="https://img.shields.io/static/v1?label=Discord&message=Channel&color=2ea44f&logo=discord" alt="Discord - Channel"></a>
</div>
</div>
</div>
<!-- Menu Footer [end]-->
</div>
<!-- Menu Nav [end]-->
</div>
</nav>
</header>
<main class="site-main" role="main">
<div class="site-content">
<div class="site-content-inner">
<div class="feature" data-component="feature" data-feature-slug="Team" data-feature-order="4">
<div class="logo featured featured--4">
</div>
</div>
</div>
<div class="site-content">
<div class="site-content-inner">
<section class="page">
<div class="big-title">
<div class="big-title__title">Team</div>
</div>
<div class="page-inner">
<div class="page__header">
<h1 id="Examples">
<a href="#Examples" class="headerlink" title="Examples" onclick="window.location.assign(this.href)"></a
>Team
</h1>
<!-- <p>
If you believe in yourself and have dedication and pride -
and never quit, you'll be a winner
</p> -->
</div>
<div class="big-shape-outer">
<div class="logo only-big can-move detail-feature featured--4">
<svg class="" viewBox="0 0 568 134" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g class="base" opacity="1" stroke="#2E5BDC" stroke-width="5px" fill="#fff">
<g class="letters">
<g class="base-item" transform="translate(2, 0)">
<rect x="1" y="3" width="38" height="128" />
<circle cx="41" cy="92" r="40" />
</g>
<g class="base-item" transform="translate(96, 0)">
<rect x="43" y="52" width="38" height="79" />
<circle cx="41" cy="92" r="40" />
</g>
<g class="base-item" transform="translate(201, 0)">
<g transform="translate(0, 91)">
<path id="test" d="M0 0
C 0 -52
79 -52
79 0
C 79 0
0 0
0 0
Z" />
</g>
<rect x="0" y="52" width="38" height="79" />
</g>
<g class="base-item" transform="translate(297, 0)">
<rect x="1" y="3" width="38" height="128" />
<circle cx="41" cy="92" r="40" />
</g>
<g class="base-item" transform="translate(391, 0)">
<rect x="43" y="52" width="38" height="79" />
<circle cx="41" cy="92" r="40" />
</g>
</g>
<!-- end letters -->
<g class="base-item" class="c6" transform="translate(486, 0)">
<g transform="translate(0, 91)">
<rect class="js__rect" x="1" y="-91" width="38" height="128" />
<path class="js__circle" x="0" y="0" d="M0 0 C 0 -52 79 -52 79 0 C 79 52 0 52 0 0 Z" />
<rect class="js__rect__alternate" x="1" y="-91" width="38" height="128" />
</g>
<g class="js__letter" stroke="none" fill="#2E5BDC" transform="translate(-1, 50)">
<path
d="M38.3027766,20.6493333 C38.3027766,21.316 38.1782152,21.941 37.9290924,22.5243333 C37.6799696,23.1076667 37.3395018,23.6076667 36.9076889,24.0243333 C36.475876,24.441 35.9693263,24.7743333 35.3880398,25.0243333 C34.808414,25.2743333 34.2005544,25.3993333 33.5694433,25.3993333 C32.9051158,25.3993333 32.2906129,25.2743333 31.7259345,25.0243333 C31.1612561,24.7743333 30.6630105,24.441 30.2328585,24.0243333 C29.7993848,23.6076667 29.458917,23.1076667 29.2097942,22.5243333 C28.9606713,21.941 28.8361099,21.316 28.8361099,20.6493333 C28.8361099,19.9826667 28.9606713,19.3576667 29.2097942,18.7743333 C29.458917,18.191 29.7993848,17.6926667 30.2328585,17.2743333 C30.6630105,16.8576667 31.1612561,16.5243333 31.7259345,16.2743333 C32.2906129,16.0243333 32.9051158,15.8993333 33.5694433,15.8993333 C34.2005544,15.8993333 34.808414,16.0243333 35.3880398,16.2743333 C35.9693263,16.5243333 36.475876,16.8576667 36.9076889,17.2743333 C37.3395018,17.6926667 37.6799696,18.191 37.9290924,18.7743333 C38.1782152,19.3576667 38.3027766,19.9826667 38.3027766,20.6493333 L38.3027766,20.6493333 Z M27.6087649,29.666 L36.8097006,29.666 L36.8097006,59.366 C36.8097006,61.0993333 36.3430105,62.3826667 35.4146129,63.216 C34.4828936,64.0493333 33.2721567,64.466 31.7757591,64.466 L20.068648,64.466 L20.068648,58.466 L29.0354082,58.466 C30.0335602,58.466 30.530145,57.916 30.530145,56.816 L30.530145,35.666 L27.6087649,35.666 L27.6087649,29.666 Z">
</path>
<path
d="M48.6342316,36.6658333 C48.6342316,37.4658333 49.0494363,38.0408333 49.8798456,38.3908333 C50.710255,38.7408333 52.2216,39.0325 54.4122199,39.2658333 C56.9383251,39.5341667 58.9977404,40.2908333 60.5921263,41.5408333 C62.1865123,42.7908333 62.9837053,44.5341667 62.9837053,46.7658333 L62.9837053,47.0658333 C62.9837053,49.5341667 62.0868632,51.4991667 60.2931789,52.9658333 C58.4978339,54.4341667 55.9750503,55.1658333 52.7198456,55.1658333 C50.7932959,55.1658333 49.1490854,54.9158333 47.787214,54.4158333 C46.4253427,53.9158333 45.295986,53.2908333 44.3991439,52.5408333 C43.5023018,51.7908333 42.8114012,50.9591667 42.3314246,50.0408333 C41.8497871,49.1241667 41.5259275,48.2325 41.3598456,47.3658333 L47.1394947,45.4658333 C47.4052257,46.5325 47.9616,47.4658333 48.8069567,48.2658333 C49.6556351,49.0658333 50.957717,49.4658333 52.7198456,49.4658333 C54.2793544,49.4658333 55.3522433,49.2241667 55.9335298,48.7408333 C56.5131556,48.2591667 56.8054596,47.7341667 56.8054596,47.1658333 C56.8054596,46.8341667 56.7307228,46.5258333 56.5812491,46.2408333 C56.4317754,45.9591667 56.1577404,45.6908333 55.7591439,45.4408333 C55.3605474,45.1908333 54.8207813,44.9841667 54.1381848,44.8158333 C53.4572491,44.6508333 52.6035883,44.5158333 51.5738807,44.4158333 C48.7837053,44.1825 46.5665123,43.4591667 44.9223018,42.2408333 C43.2780912,41.0241667 42.455986,39.2341667 42.455986,36.8658333 L42.455986,36.5658333 C42.455986,35.3341667 42.7200561,34.2491667 43.2531789,33.3158333 C43.7846409,32.3841667 44.4821848,31.5908333 45.3458105,30.9408333 C46.2094363,30.2908333 47.2059275,29.7991667 48.3352842,29.4658333 C49.4646409,29.1325 50.627214,28.9658333 51.8230035,28.9658333 C53.3825123,28.9658333 54.7377404,29.1591667 55.8837053,29.5408333 C57.0296702,29.9258333 58.0012491,30.4241667 58.7984421,31.0408333 C59.5956351,31.6591667 60.2433544,32.3408333 60.7416,33.0908333 C61.2398456,33.8408333 61.6201731,34.5658333 61.8859041,35.2658333 L56.2075649,37.5658333 C55.9086175,36.6658333 55.3921029,35.9591667 54.6630035,35.4408333 C53.9305825,34.9258333 52.9855766,34.6658333 51.8230035,34.6658333 C50.7584187,34.6658333 49.9628865,34.8591667 49.4297637,35.2408333 C48.8999626,35.6241667 48.6342316,36.0991667 48.6342316,36.6658333">
</path>
</g> <!-- end js__letter -->
</g> <!-- end js -->
</g>
<g class="hover" opacity="1" stroke-width="5px" fill="#fff">
<defs xmlns="http://www.w3.org/2000/svg">
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="blue">
<stop stop-color="#A353FC" offset="0%" />
<stop stop-color="#00C5EE" offset="100%" />
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="purple">
<stop stop-color="#E752AC" offset="0%" />
<stop stop-color="#FD0A45" offset="100%" />
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="green">
<stop stop-color="#FFE864" offset="0%" />
<stop stop-color="#32DC73" offset="100%" />
</linearGradient>
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="violet">
<stop stop-color="#8D3DF5" offset="0%" />
<stop stop-color="#FF62C6" offset="100%" />
</linearGradient>
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="orange">
<stop stop-color="#FEB440" offset="0%" />
<stop stop-color="#FA7076" offset="100%" />
</linearGradient>
</defs>
<g class="item b1">
<g transform="translate(2, 0)">
<g class="move move1">
<rect class="can-grow" stroke="#A5FBFF" fill="#A5FBFF" x="1" y="3" width="38"
height="128" />
</g>
<g class="move move2">
<circle class="can-grow" stroke="url(#blue)" fill="url(#blue)" cx="41" cy="92" r="40" />
</g>
</g>
</g>
<g class="item a2">
<g transform="translate(96, 0)">
<g class="move move5">
<rect class="can-grow" x="43" y="52" width="38" height="79" stroke="#A9FCC9"
fill="#A9FCC9" />
</g>
<g class="move move2">
<circle class="can-grow" cx="41" cy="92" r="40" stroke="url(#green)" fill="url(#green)" />
</g>
</g>
</g>
<g class="item r3">
<g transform="translate(201, 0)">
<g transform="translate(0, 91)">
<g class="move move3">
<path class="can-grow" stroke="url(#orange)" fill="url(#orange)" id="test" d="M0 0
C 0 -52
79 -52
79 0
C 79 0
0 0
0 0
Z" />
</g>
</g>
<g class="move move4">
<rect class="can-grow" stroke="#FFDB97" fill="#FFDB97" x="0" y="52" width="38"
height="79" />
</g>
</g>
</g>
<g class="item b4">
<g transform="translate(297, 0)">
<g class="move move1">
<rect class="can-grow" stroke="#FFC1C4" fill="#FFC1C4" x="1" y="3" width="38"
height="128" />
</g>
<g class="move move5">
<circle class="can-grow" stroke="url(#purple)" fill="url(#purple)" cx="41" cy="92"
r="40" />
</g>
</g>
</g>
<g class="item a5">
<g transform="translate(391, 0)">
<g class="move move4">
<rect class="can-grow" stroke="#F5BCFD" fill="#F5BCFD" x="43" y="52" width="38"
height="79" />
</g>
<g class="move move3">
<circle class="can-grow" stroke="url(#orange" fill="url(#orange" cx="41" cy="92"
r="40" />
</g>
</g>
</g>
<!-- end letters -->
<g class="item c6">
<g transform="translate(486, 0)" stroke="#2E5BDC" stroke-width="5px" fill="#fff">
<g class="move move3">
<g class="can-grow togrow">
<g transform="translate(0, 91)">
<path x="0" y="0" d="M0 0 C 0 -52 79 -52 79 0 C 79 52 0 52 0 0 Z" />
</g>
<g class="js" stroke="none" fill="#2E5BDC" transform="translate(-1, 50)">
<path
d="M38.3027766,20.6493333 C38.3027766,21.316 38.1782152,21.941 37.9290924,22.5243333 C37.6799696,23.1076667 37.3395018,23.6076667 36.9076889,24.0243333 C36.475876,24.441 35.9693263,24.7743333 35.3880398,25.0243333 C34.808414,25.2743333 34.2005544,25.3993333 33.5694433,25.3993333 C32.9051158,25.3993333 32.2906129,25.2743333 31.7259345,25.0243333 C31.1612561,24.7743333 30.6630105,24.441 30.2328585,24.0243333 C29.7993848,23.6076667 29.458917,23.1076667 29.2097942,22.5243333 C28.9606713,21.941 28.8361099,21.316 28.8361099,20.6493333 C28.8361099,19.9826667 28.9606713,19.3576667 29.2097942,18.7743333 C29.458917,18.191 29.7993848,17.6926667 30.2328585,17.2743333 C30.6630105,16.8576667 31.1612561,16.5243333 31.7259345,16.2743333 C32.2906129,16.0243333 32.9051158,15.8993333 33.5694433,15.8993333 C34.2005544,15.8993333 34.808414,16.0243333 35.3880398,16.2743333 C35.9693263,16.5243333 36.475876,16.8576667 36.9076889,17.2743333 C37.3395018,17.6926667 37.6799696,18.191 37.9290924,18.7743333 C38.1782152,19.3576667 38.3027766,19.9826667 38.3027766,20.6493333 L38.3027766,20.6493333 Z M27.6087649,29.666 L36.8097006,29.666 L36.8097006,59.366 C36.8097006,61.0993333 36.3430105,62.3826667 35.4146129,63.216 C34.4828936,64.0493333 33.2721567,64.466 31.7757591,64.466 L20.068648,64.466 L20.068648,58.466 L29.0354082,58.466 C30.0335602,58.466 30.530145,57.916 30.530145,56.816 L30.530145,35.666 L27.6087649,35.666 L27.6087649,29.666 Z">
</path>
<path
d="M48.6342316,36.6658333 C48.6342316,37.4658333 49.0494363,38.0408333 49.8798456,38.3908333 C50.710255,38.7408333 52.2216,39.0325 54.4122199,39.2658333 C56.9383251,39.5341667 58.9977404,40.2908333 60.5921263,41.5408333 C62.1865123,42.7908333 62.9837053,44.5341667 62.9837053,46.7658333 L62.9837053,47.0658333 C62.9837053,49.5341667 62.0868632,51.4991667 60.2931789,52.9658333 C58.4978339,54.4341667 55.9750503,55.1658333 52.7198456,55.1658333 C50.7932959,55.1658333 49.1490854,54.9158333 47.787214,54.4158333 C46.4253427,53.9158333 45.295986,53.2908333 44.3991439,52.5408333 C43.5023018,51.7908333 42.8114012,50.9591667 42.3314246,50.0408333 C41.8497871,49.1241667 41.5259275,48.2325 41.3598456,47.3658333 L47.1394947,45.4658333 C47.4052257,46.5325 47.9616,47.4658333 48.8069567,48.2658333 C49.6556351,49.0658333 50.957717,49.4658333 52.7198456,49.4658333 C54.2793544,49.4658333 55.3522433,49.2241667 55.9335298,48.7408333 C56.5131556,48.2591667 56.8054596,47.7341667 56.8054596,47.1658333 C56.8054596,46.8341667 56.7307228,46.5258333 56.5812491,46.2408333 C56.4317754,45.9591667 56.1577404,45.6908333 55.7591439,45.4408333 C55.3605474,45.1908333 54.8207813,44.9841667 54.1381848,44.8158333 C53.4572491,44.6508333 52.6035883,44.5158333 51.5738807,44.4158333 C48.7837053,44.1825 46.5665123,43.4591667 44.9223018,42.2408333 C43.2780912,41.0241667 42.455986,39.2341667 42.455986,36.8658333 L42.455986,36.5658333 C42.455986,35.3341667 42.7200561,34.2491667 43.2531789,33.3158333 C43.7846409,32.3841667 44.4821848,31.5908333 45.3458105,30.9408333 C46.2094363,30.2908333 47.2059275,29.7991667 48.3352842,29.4658333 C49.4646409,29.1325 50.627214,28.9658333 51.8230035,28.9658333 C53.3825123,28.9658333 54.7377404,29.1591667 55.8837053,29.5408333 C57.0296702,29.9258333 58.0012491,30.4241667 58.7984421,31.0408333 C59.5956351,31.6591667 60.2433544,32.3408333 60.7416,33.0908333 C61.2398456,33.8408333 61.6201731,34.5658333 61.8859041,35.2658333 L56.2075649,37.5658333 C55.9086175,36.6658333 55.3921029,35.9591667 54.6630035,35.4408333 C53.9305825,34.9258333 52.9855766,34.6658333 51.8230035,34.6658333 C50.7584187,34.6658333 49.9628865,34.8591667 49.4297637,35.2408333 C48.8999626,35.6241667 48.6342316,36.0991667 48.6342316,36.6658333">
</path>
</g> <!-- end js__letter -->
</g>
</g>
</g> <!-- end js -->
</g>
</g>
<!-- <g class="big" opacity="1" stroke-width="5px" fill="#fff">
<g class="big1" transform="translate(2, 0)">
<g class="loop move1">
<rect class="select-to-animate to-animate" data-morph="1rect" stroke="#A5FBFF" fill="#A5FBFF" x="1" y="3"
width="38" height="128" />
</g>
<g class="loop move2">
<circle class="select-to-animate to-animate" data-morph="1circle" stroke="url(#blue)" fill="url(#blue)"
cx="41" cy="92" r="40" />
</g>
</g>
<g class="big2" transform="translate(96, 0)">
<g class="loop move4">
<rect class="select-to-animate to-animate" stroke="#A9FCC9" fill="#A9FCC9" x="43" y="52" width="38"
height="79" />
</g>
<g class="loop move2">
<circle class="select-to-animate to-animate" stroke="url(#green)" fill="url(#green)" cx="41" cy="92" r="40" />
</g>
</g>
<g class="big3" transform="translate(201, 0)">
<g class="loop move1">
<g transform="translate(0, 91)">
<path class="select-to-animate to-animate" stroke="url(#orange)" fill="url(#orange)" id="test" d="M0 0
C 0 -52
79 -52
79 0
C 79 0
0 0
0 0
Z" />
</g>
</g>
<g class="loop move5">
<rect class="select-to-animate to-animate" stroke="#FFDB97" fill="#FFDB97" x="0" y="52" width="38"
height="79" />
</g>
</g>
<g class="big4" transform="translate(297, 0)">
<g class="loop move2">
<rect class="select-to-animate to-animate" stroke="#FFC1C4" fill="#FFC1C4" x="1" y="3" width="38"
height="128" />
</g>
<g class="loop move3">
<circle class="select-to-animate to-animate" stroke="url(#purple)" fill="url(#purple)" cx="41" cy="92"
r="40" />
</g>
</g>
<g class="big5" transform="translate(391, 0)">
<g class="loop move5">
<rect class="select-to-animate to-animate" stroke="#F5BCFD" fill="#F5BCFD" x="43" y="52" width="38"
height="79" />
</g>
<g class="loop move2">
<circle class="select-to-animate to-animate" stroke="url(#violet)" fill="url(#violet)" cx="41" cy="92"
r="40" />
</g>
</g>
</g> -->
<g class="links">
<a xlink:href="/features/user-friendly/" href="/features/user-friendly/" onclick="window.location.assign(this.href)">
<rect stroke="none" fill="rgba(0, 0, 0, 0)" x="0" y="0" width="95" height="134" />
</a>
<a xlink:href="/features/easy-peasy/" href="/features/easy-peasy/" onclick="window.location.assign(this.href)">
<rect stroke="none" fill="rgba(0, 0, 0, 0)" x="95" y="0" width="95" height="134" />
</a>
<a xlink:href="/features/smart/" href="/features/smart/" onclick="window.location.assign(this.href)">
<rect stroke="none" fill="rgba(0, 0, 0, 0)" x="190" y="0" width="95" height="134" />
</a>
<a xlink:href="/features/extensible/" href="/features/extensible/" onclick="window.location.assign(this.href)">
<rect stroke="none" fill="rgba(0, 0, 0, 0)" x="285" y="0" width="95" height="134" />
</a>
<a xlink:href="/features/futureproof/" href="/features/futureproof/" onclick="window.location.assign(this.href)">
<rect stroke="none" fill="rgba(0, 0, 0, 0)" x="380" y="0" width="95" height="134" />
</a>
<a xlink:href="/features/community/" href="/features/community/" onclick="window.location.assign(this.href)">
<rect stroke="none" fill="rgba(0, 0, 0, 0)" x="475" y="0" width="95" height="134" />
</a>
</g>
</svg>
</div>
</div>
<div class="page__separator"></div>
</div>
<style>
@media only screen and (max-width: 400px) {
.teammember{
transform: translateX(-20px);
}
}
</style>
<ul style="list-style-type: none;" class="teammember" data-component="examples-grid">
<div class="col">
<div class="flex">
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<style>
.teamimg{
height: 340px;
width: 300px;
}
</style>
<img width="300" height="300" class="teamimg" src="./teampics/GopiVaibhav.jpg" alt="">
</div>
<div class="team-content">
<h1>Gopi Vaibhav</h1>
<h3>Lead Organizer</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/shoray.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Shoray Singhal</h1>
<h3>Web Dev Advisor</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/tejesh.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Tejesh</h1>
<h3>Development Head</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
</div>
<div class="flex">
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/parak.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Prerak</h1>
<h3>FOSS Advisor</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/vatsal.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Vatsal</h1>
<h3>ML Advisor</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/parasad.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Prasad</h1>
<h3>Head of Operations</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<div class="flex">
<li class="grid__item example__card team4">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/prince.jpeg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Prince</h1>
<h3>Technical Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
</div>
<li class="grid__item example__card team5">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/Om.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Om Srivastava</h1>
<h3>Technical Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team5">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/deep.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Deep</h1>
<h3>Techinal Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
</div>
<div class="flex">
<li class="grid__item example__card team5">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/palash.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Palash</h1>
<h3>Technical Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team6">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/Advit(2).jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Advit </h1>
<h3>Technical Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team6">
<div class="teamcard">
<div class="teamimage">
<img src="https://media.licdn.com/dms/image/D4D03AQEZwTVdqpXUkQ/profile-displayphoto-shrink_800_800/0/1673695126743?e=1686787200&v=beta&t=mle1uqagSgO8KlYho__oYdK38trj1kK0-emysTnQVPY" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Karthik</h1>
<h3>Technical Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team6">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/IMG_20221022_075624.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Jitendra Abhiram</h1>
<h3>CR Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team6">
<div class="teamcard">
<div class="teamimage">
<img src="./teampics/Kaustuv.webp" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Kaustuv Behera</h1>
<h3>PR Executive</h3>
<ul class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
<li class="grid__item example__card team6">
<div class="teamcard">
<div class="teamimage">
<style>
</style>
<img src="./teampics/Uday kumar.jpg" class="teamimg" alt="">
</div>
<div class="team-content">
<h1>Uday</h1>
<h3>Logistics Executive</h3>
<li class="teamicons">
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/linkedin-icon-18-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/instagram-icon-256.png" alt=""> <a href=""></a> </li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/facebook-icon-256.png" alt=""> <a href=""></a></li>
<li> <img width="20px" src="https://iconsplace.com/wp-content/uploads/_icons/ffffff/256/png/twitter-icon-256.png" alt=""><a href=""></a></li>
</ul>
</div>
</div>
</li>
</div>