-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyprojects.html
1206 lines (1153 loc) · 96.7 KB
/
myprojects.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>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-THXQCMJ');
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<!-- Primary Meta Tags -->
<meta name="title" content="Srikant Sahoo - Projects">
<meta name="description" content="I am a self-taught UI/UX designer and coder. See my portfolio to know about me...😊">
<meta name="keywords" content="Srikant Sahoo, srikant, sahoo, portfolio, profile, kiit, university, kiit university, ui, ux, design, designer, designing, coder, code, coding, xd, illustrator, adobe, self taught, repo, google, assistant, github, linkedin, self, taught, self-taught">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="revisit-after" content="1 days">
<meta name="author" content="Srikant Sahoo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="thumbnail" content="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/profile.jpg" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://srikantsahoo.now.sh/">
<meta property="og:title" content="Srikant Sahoo - Projects">
<meta property="og:description" content="I am a self-taught UI/UX designer and coder. See my portfolio to know about me...😊">
<meta property="og:image" content="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/portfolio.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://srikantsahoo.now.sh/">
<meta property="twitter:title" content="Srikant Sahoo - Projects">
<meta property="twitter:description" content="I am a self-taught UI/UX designer and coder. See my portfolio to know about me...😊">
<meta property="twitter:image" content="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/portfolio.jpg">
<title>My Projects | Srikant Sahoo</title>
<link rel="shortcut icon" href="/images/profile.jpg" type="image/x-icon" async>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" async>
<link rel="stylesheet" href="/src/css/main.css" async>
<!--<link rel="stylesheet" href="/src/css/main.min.css" async>-->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js" defer></script>
<!-- Facebook Pixel Code -->
<script>
! function(f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function() {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '517388509169372');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=517388509169372&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<PageMap>
<DataObject type="thumbnail">
<Attribute name="src" value="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/profile.jpg" />
<Attribute name="width" value="100" />
<Attribute name="height" value="100" />
</DataObject>
</PageMap>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-THXQCMJ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<nav class="navbarhorizontal">
<ul class="navElementsULhorizontal">
<a href="/" class="logo tooltip">
<li>
<span class="tooltiptext">Srikant Sahoo</span>
<img class="lazyload" id="abcd" class="logoImage" src="images/profile.jpg" alt="Srikant Sahoo">
</li>
</a>
<div style="display:flex;">
<a href="/" class="navItemhorizontal tooltip notOnPhone">
<li>
<span class="tooltiptext">Home</span>
<svg xmlns="http://www.w3.org/2000/svg" width="40.503" height="31.496" viewBox="0 0 40.503 31.496">
<path id="Icon_awesome-home" data-name="Icon awesome-home" d="M19.714,10.425,6.75,21.1V32.625A1.125,1.125,0,0,0,7.875,33.75l7.879-.02A1.125,1.125,0,0,0,16.874,32.6v-6.73A1.125,1.125,0,0,1,18,24.75h4.5a1.125,1.125,0,0,1,1.125,1.125V32.6a1.125,1.125,0,0,0,1.125,1.129l7.876.022a1.125,1.125,0,0,0,1.125-1.125V21.094L20.789,10.425A.857.857,0,0,0,19.714,10.425Zm20.477,7.257-5.878-4.845V3.1a.844.844,0,0,0-.844-.844H29.531a.844.844,0,0,0-.844.844V8.2l-6.3-5.179a3.375,3.375,0,0,0-4.289,0L.305,17.681A.844.844,0,0,0,.193,18.87l1.793,2.18a.844.844,0,0,0,1.189.115L19.714,7.542a.857.857,0,0,1,1.076,0l16.54,13.622a.844.844,0,0,0,1.188-.112l1.793-2.18a.844.844,0,0,0-.12-1.19Z" transform="translate(0.001 -2.254)"/>
</svg>
</li>
</a>
<a href="/about.html" class="navItemhorizontal tooltip">
<li>
<span class="tooltiptext">About Me</span>
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="13.824" viewBox="0 0 36 13.824">
<path id="Icon_simple-aboutme" data-name="Icon simple-aboutme" d="M29.3,13.716a3.44,3.44,0,0,0-3.443,3.173h6.912A3.409,3.409,0,0,0,29.3,13.716m-3.389,5.422a3.68,3.68,0,0,0,3.8,2.954,5.322,5.322,0,0,0,3.578-1.357L35.05,22.77a7.854,7.854,0,0,1-5.609,2.142A6.789,6.789,0,0,1,22.392,18a6.757,6.757,0,0,1,6.858-6.912A6.673,6.673,0,0,1,36,18v1.139H25.916Zm-9.733,5.742V16.346c0-1.462-.648-2.3-2-2.3A3.5,3.5,0,0,0,11.6,15.536v9.347H8.078V16.346c0-1.462-.621-2.3-1.976-2.3a3.452,3.452,0,0,0-2.576,1.494v9.347H0V11.259H3.526v1.726A5.332,5.332,0,0,1,7.592,11.09,3.552,3.552,0,0,1,11.3,13.475a5.31,5.31,0,0,1,4.365-2.385c2.549,0,4.039,1.519,4.039,4.446v9.347h-3.53Z" transform="translate(0 -11.088)"/>
</svg>
</li>
</a>
<a id="activeNav" href="/myprojects.html" class="navItemhorizontal tooltip">
<li>
<span class="tooltiptext">My Projects</span>
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="28.5" viewBox="0 0 30 28.5">
<path id="Icon_material-work" data-name="Icon material-work" d="M30,9H24V6a2.99,2.99,0,0,0-3-3H15a2.99,2.99,0,0,0-3,3V9H6a2.977,2.977,0,0,0-2.985,3L3,28.5a2.99,2.99,0,0,0,3,3H30a2.99,2.99,0,0,0,3-3V12A2.99,2.99,0,0,0,30,9ZM21,9H15V6h6Z" transform="translate(-3 -3)"/>
</svg>
</li>
</a>
<a href="/about.html#skillsSection" class="navItemhorizontal tooltip notOnPhone">
<li>
<span class="tooltiptext">Skills</span>
<svg xmlns="http://www.w3.org/2000/svg" width="28.995" height="27.752" viewBox="0 0 28.995 27.752">
<path id="Icon_awesome-star" data-name="Icon awesome-star" d="M14.384.964,10.845,8.14,2.926,9.295a1.735,1.735,0,0,0-.959,2.959L7.7,17.836,6.341,25.722a1.733,1.733,0,0,0,2.515,1.826l7.084-3.723,7.084,3.723a1.735,1.735,0,0,0,2.515-1.826l-1.355-7.886,5.729-5.582a1.735,1.735,0,0,0-.959-2.959L21.034,8.14,17.495.964a1.736,1.736,0,0,0-3.111,0Z" transform="translate(-1.441 0.001)"/>
</svg>
</li>
</a>
<a href="/about.html#myWorksSection" class="navItemhorizontal tooltip notOnPhone">
<li>
<span class="tooltiptext">My Profiles</span>
<svg xmlns="http://www.w3.org/2000/svg" width="31.184" height="24.948" viewBox="0 0 31.184 24.948">
<path id="Icon_awesome-project-diagram" data-name="Icon awesome-project-diagram" d="M18.711,15.592H12.474a1.559,1.559,0,0,0-1.559,1.559v6.237a1.559,1.559,0,0,0,1.559,1.559h6.237a1.559,1.559,0,0,0,1.559-1.559V17.151A1.559,1.559,0,0,0,18.711,15.592ZM9.355,1.559A1.559,1.559,0,0,0,7.8,0H1.559A1.559,1.559,0,0,0,0,1.559V7.8A1.559,1.559,0,0,0,1.559,9.355H6.223l3.565,6.239a3.108,3.108,0,0,1,2.686-1.561h.014L9.355,8.552V6.237H20.27V3.118H9.355ZM29.625,0H23.388a1.559,1.559,0,0,0-1.559,1.559V7.8a1.559,1.559,0,0,0,1.559,1.559h6.237A1.559,1.559,0,0,0,31.184,7.8V1.559A1.559,1.559,0,0,0,29.625,0Z"/>
</svg>
</li>
</a>
<a href="/about.html#contactSection" class="navItemhorizontal tooltip">
<li>
<span class="tooltiptext lastfix">Contact Me</span>
<svg xmlns="http://www.w3.org/2000/svg" width="29.25" height="29.25" viewBox="0 0 29.25 29.25">
<path id="Icon_ionic-md-contact" data-name="Icon ionic-md-contact" d="M18,3.375A14.625,14.625,0,1,0,32.625,18,14.668,14.668,0,0,0,18,3.375Zm0,4.387a4.387,4.387,0,1,1-4.387,4.387A4.4,4.4,0,0,1,18,7.762Zm0,21.122A10.654,10.654,0,0,1,9.225,24.2c.07-2.925,5.85-4.535,8.775-4.535s8.7,1.61,8.775,4.535A10.672,10.672,0,0,1,18,28.884Z" transform="translate(-3.375 -3.375)"/>
</svg>
</li>
</a>
</div>
</ul>
</nav>
<section id="projectsSection" data-aos="fade-right" data-aos-delay="100">
<!--<div style="display:flex;width: 100%;">
<a href="/" rel="noopener noreferrer" style="margin: 60px; position: absolute;" class="projectLinkWrapper" data-aos="fade-left" data-aos-delay="1000">
<div class="projectLink roundedButton">
<span>👈 Back to home</span>
</div>
</a>
</div>-->
<div class="heading">My Projects</div>
<div class="projectCardContainer">
<div class="tags">tags</div>
<!--<div class="projectsScrollView">-->
<div class="projectsCardsDiv">
<div class="projectsBox" id="Bladers Multiplayer spinning tops(Game UX) 🎮" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271679-24b97000-37ab-11eb-98c8-736aed491e11.png" alt="Bladers Multiplayer spinning tops(Game UX) 🎮 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Bladers Multiplayer spinning tops(Game UX) 🎮
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
October 2020 - Present 2021
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Bladers is a game with <b>4.2 rating</b> on playstore(It changes). It is an exhilarating and realistic gaming experience which allows the player to clash with other real-time players on a one-on-one spinning top battle.
Players can either play with friends or with a random player across the internet. Click here to know more about the <a href="https://play.google.com/store/apps/details?id=com.gamersngame.BladersAR" target="_blank" rel="noopener noreferrer"><b class="boldlink"> features of the game 👈</b></a>
<br>We have acheived a total of <b>3,00,000+ i.e 3 Lakh+</b> installs till now which is massive😅 and still counting.
<br><br><b>Status | ✅</b><br>This project is in <b style="color: green;">production</b>. just recently succesfully released design v2.0
<br><br><b>Team size | 4 | 🤼</b><br> <b>My role👉 </b>I have handled all the UX as well as the 2D non-digetic game graphics assets. I have made the playstore Ads, screenshots and logo and also designed the design v2.0.
<br><br><b>Technologies used | 💻</b><br> Figma | Unity | Android | Photon Server | Photopea
<br><br> See the live design clickable prototype <a href="https://www.figma.com/file/oMUYYYFMhqMODTLeMNIA1R/Beyblade-Game-UI" target="_blank" rel="noopener noreferrer"><b class="boldlink">at Figma </b></a>
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Game adsense AD animation">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271712-5b8f8600-37ab-11eb-8423-8579b4f538b8.png" alt="Game adsense AD animation">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Bladers Multiplayer logo">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271732-85e14380-37ab-11eb-97b7-fbc3c7133c23.png" alt="Bladers Multiplayer logo">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Brahmos Interactive logo">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271735-8e397e80-37ab-11eb-9457-50b4511c7e28.png" alt="Brahmos Interactive logo">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="900" title="Playstore feature cover image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271688-33078c00-37ab-11eb-8ddc-8742f51f6be4.png" alt="Playstore feature cover image">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="1000" title="Playstore feature cover image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271695-3c90f400-37ab-11eb-988b-dd7c4c2933dd.png" alt="Playstore feature cover image">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="1100" title="Playstore feature cover image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271706-461a5c00-37ab-11eb-9feb-68b807638df7.png" alt="Playstore feature cover image">
</div>
</div>
<a href="https://play.google.com/store/apps/details?id=com.gamersngame.BladersAR" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Download Now 🎮 ▶
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Movie New tab extension 🎬" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://raw.githubusercontent.com/srikant-code/My-Front-End-Codes/master/Javascript%20projects/Movie%20Trailer%20Extension/img/deployment2.png" alt="Movie New tab extension 🎬 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Movie New tab extension 🎬
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
July 2020 - August 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Frontend, UX/UI and Backend
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Movie New tab is an extension which can run in chrome and firefox browsers. But wait this extension is not yet published to the store. But you can still search your favorite movies and get the details
about it. Try it with the below link. <br>If you are a <b>coder</b> or a <b>designer</b> and you like my portfolio then please do ⭐ this repo here 🥺 <a href='https://github.com/srikant-code/My-Front-End-Codes' class='boldlink'>GitHub 👈 </a>
<br><br>
<b>Status | ✅</b><br>This project is <b style="color: green;">almost completed</b>, but I will add more features in future to make more information available to my users. You can check out the project using the link below and try
it.
<br><br><b>Team size | 1 | 🤼</b><br> Ahh, I am the only one managing this project till now😉. From ideation to UX & UI to Development and production. Everything!💪
<br><br><b>Technologies used | 💻</b><br> JavaScript ES6 | Sass | CSS 3 | HTML 5 | Figma | Vercel
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Browsing a movie">
<img class="lazyload" src="https://raw.githubusercontent.com/srikant-code/My-Front-End-Codes/master/Javascript%20projects/Movie%20Trailer%20Extension/img/deployment2.png" alt="Browsing a movie">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Movie detailed description page">
<img class="lazyload" src="https://raw.githubusercontent.com/srikant-code/My-Front-End-Codes/master/Javascript%20projects/Movie%20Trailer%20Extension/img/deployment1.png" alt="Movie detailed description page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Search movie/TV shows page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101262644-388eb300-3766-11eb-83e1-99d5167151f9.png" alt="Search movie/TV shows page">
</div>
</div>
<a href="https://movie-new-tab-extension.vercel.app" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Browse your fav movies🍿
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="My Portfolio 😅" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="images/portfolio.jpg" alt="My Portfolio 😅 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
My Portfolio 😅
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
April 2020 - present
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Full Stack, UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Yes, this portfolio is itself a UX/frontend project. I have designed the whole UI and coded it as well. I have used all my gained skills to make it as responsive as possible. <br>If you are a <b>coder</b> or a <b>designer</b> and you like my portfolio then please do ⭐ this repo here 🥺 <a href='https://github.com/srikant-code' class='boldlink'>GitHub 👈 </a> <br><br><b>Status | </b>✅<br>This project is <span style='color: green; font-weight: bold;'>completed</span>, though currently it's not in active development.<br>
<br><b>Team size | 1 | 🤼</b><br> Ahh, I am the only one managing this project😉. From ideation to UX & UI to Development and production. Everything!💪
<br><br><b data-aos='fade-up' data-aos-delay='100'>Technologies used | 💻</b><br> JavaScript ES6 | Sass | CSS 3 | HTML 5 | Figma | Photoshop | Vercel<br>
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="My profile picture with yellow background">
<img class="lazyload" src="images/profile.jpg" alt="My profile picture with yellow background">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="My picture photoshopped with yellow background">
<img class="lazyload" src="images/heroimagemaster.jpg" alt="My picture photoshopped with yellow background">
</div>
</div>
<a href="https://github.com/srikant-code/My-portfolio" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
You are seeing this project😅
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Hacktoberfest KIIT 2020 🎤" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119768806-e9d10300-bed6-11eb-817e-af1f8aa19c35.png" alt="Hacktoberfest KIIT 2020 🎤 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Hacktoberfest KIIT 2020 🎤
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
October 2020 - November 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
We at our University with a bunch of people have designed & developed an event website for the biggest opensource event Hacktoberfest 2020 collaborately.
You can check out the 🥺 <a href='https://kiithacktoberfest.netlify.app/' class='boldlink'>Live Hosted Link 👈 </a>
<br><br>
<b>Status | ✅</b><br>This project is <b style="color: green;">completed</b>
<br><br><b>Team size | 2-10 | 🤼</b><br> I with my teammates have designed the whole website UX as well as UI.
<br><br><b>Technologies used | 💻</b><br> Figma | Illustrator | Gatsby React
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Registration Page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119768847-fe150000-bed6-11eb-8be6-d59430572860.png" alt="Registration Page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Hero Image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119768806-e9d10300-bed6-11eb-817e-af1f8aa19c35.png" alt="Hero Image">
</div>
</div>
<a href="https://www.figma.com/file/qeCIEcR7gvCboO9GWnQzJV/Hacktoberfest-KIIT-2020" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Open Design Link 🔗
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="ChaosCarnival Website 🎡" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263248-e8b1eb00-3769-11eb-846b-e2f879cef092.png" alt="ChaosCarnival Website 🎡 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
ChaosCarnival Website 🎡
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
September 2020 - November 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Frontend, UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
It is the landing event page for a global two-day virtual conference for Cloud Native Chaos Engineering.
<br><br><b>Status | ✅</b><br>This project is <b style="color: green;">completed</b>. The event ChaosCarnival is going to happen on <b>Feb 10th & 11th, 2021</b>.
<br><br><b>Team size | 5-10 | 🤼</b><br> <b>My role👉 </b>I have contributed to the UX and UI design of all the pages with the team, as well as coded the frontend in React, looked into the image optimizations to increase the page loading speed.
Improved the pagespeed insights by 20+ points <b style="color: green;">presently 66/100</b> which was earlier at <b style="color: red;">44/100</b>.
<br><br><b>Technologies used | 💻</b><br> Figma | React | Typescript | HTML | Styled Components etc
<br><br> See the UX and UI <a href="https://www.figma.com/file/Cf3ooKnh8dLrpUq4IayKW0/ChaosCarnival-Copy" target="_blank" rel="noopener noreferrer"><b class="boldlink">in Figma </b></a>
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Sponsors of ChaosCarnival">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263256-fcf5e800-3769-11eb-98cd-307070510e2f.png" alt="Sponsors of ChaosCarnival">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="End screen in the landing page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263263-08491380-376a-11eb-88a8-fd4f75ae51a5.png" alt="End screen in the landing page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Sponsorship details page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263289-20209780-376a-11eb-81eb-cb0a7c499ec5.png" alt="Sponsorship details page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="900" title="Sponsorship details page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263294-2dd61d00-376a-11eb-8e77-82296f678e3c.png" alt="Sponsorship details page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="1000" title="Team details page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265203-c5d40680-376a-11eb-9eed-a79c1fc6b48e.png" alt="Team details page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="1100" title="ChaosCarnival square logo">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271800-23d50e00-37ac-11eb-9506-e422638ce8e8.png" alt="ChaosCarnival square logo">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="1200" title="ChaosCarnival cover image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101271798-22a3e100-37ac-11eb-828e-0b30f4353528.png" alt="ChaosCarnival cover image">
</div>
</div>
<a href="https://chaoscarnival.io" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Open ChaosCarnival 🎡
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="LitmusChaos Website 🧪" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265585-a8ed0280-376d-11eb-8377-7222fddad9e7.png" alt="LitmusChaos Website 🧪 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
LitmusChaos Website 🧪
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
July 2020 - August 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Frontend, UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
<b>"Chaos Engineering for your Kubernetes"</b> Chaos engineering is fundamental to increasing the resilience of today’s cloud native, highly dynamic applications and infrastructure. Kubernetes developers and SREs use Litmus to create, manage and monitor chaos workflows by extending Kubernetes itself.
<br><br><b>Status | ✅</b><br>This project is <b style="color: green;">completed</b>.
<br><br><b>Team size | 10-15 | 🤼</b><br> <b>My role👉 </b>I have contributed to the UX as well as UI and optimized the images which hugely increased the page speed insights by around 40+ points now at <b style="color: green;">88/100</b>.
<br> Also contributed to the making of the brand mascot <b>ChaosBird</b>.
<br><br><b>Technologies using | 💻</b><br> Figma | React | Golang | Typescript | Electron
<br><br>
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="A section in landing page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265594-bdc99600-376d-11eb-8233-50fce5244288.png" alt="A section in landing page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="ChaosHub section in landing page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265602-ce7a0c00-376d-11eb-96f3-d9abf6dfcbde.png" alt="ChaosHub section in landing page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Home section in landing page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265585-a8ed0280-376d-11eb-8377-7222fddad9e7.png" alt="Home section in landing page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="900" title="Community section in landing page">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265615-ece00780-376d-11eb-8f57-cbe454388ba4.png" alt="Community section in landing page">
</div>
</div>
<a href="https://litmuschaos.io" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Open LitmusChaos 🧪
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="ChaosNative Landing Page UX Hackathon 🐱💻" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119767926-69f66900-bed5-11eb-9c81-e951be6150bd.png" alt="ChaosNative Landing Page UX Hackathon 🐱💻 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
ChaosNative Landing Page UX Hackathon 🐱💻
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
May 2021 - May 2021
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
UX and UI design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Created a landing page for ChaosNative UX and UI design in a 3 Day hackathon.
<br><br>
<b>Status | ✅</b><br>This project is <b style="color: green;">completed</b>.
<br><br><b>Team size | 1 | 🤼</b><br> Ahh, I am the only one managing this project till now😉. From ideation to UX & UI to Development and production. Everything!💪
<br><br><b>Technologies used | 💻</b><br>Figma
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="cards">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119767835-44695f80-bed5-11eb-8ed5-271d7d207eee.png" alt="cards">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="signup">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119767877-5814c600-bed5-11eb-9dab-f0faddbecb76.png" alt="signup">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Hero Image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/119767926-69f66900-bed5-11eb-9c81-e951be6150bd.png" alt="Hero Image">
</div>
</div>
<a href="https://www.figma.com/file/aY5jXxkJXlx1qSCS4GnfUl/1829199_UI-UX_Recruitment_2021" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Open Design Link🎨
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Kubera Propel Backend 🚂" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265404-3deefc00-376c-11eb-8d96-8ef15a4f53eb.png" alt="Kubera Propel Backend 🚂 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Kubera Propel Backend 🚂
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
October 2020 - November 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Backend and API Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Kubera Propel is based on the most popular open-source Container Attached Storage project, OpenEBS, which MayaData started and continues to lead.
<br><br><b>Status | 🟡</b><br>This project is in <b style="color: orange;">progress</b>. But I am not there in the team anymore.
<br><br><b>Team size | 15-20 | 🤼</b><br> <b>My role👉 </b>I have contributed to the backend and API design for creating the Kubernetes clusters and associated CRUD operations.
<br><br><b>Technologies used | 💻</b><br> Golang | GraphQL | Plotly.JS | React | AWS | Kubernetes | Docker
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Homepage, installing propel agent on your kubernetes">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265404-3deefc00-376c-11eb-8d96-8ef15a4f53eb.png" alt="Homepage, installing propel agent on your kubernetes">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Selecting nodes in your kubernetes">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265416-50693580-376c-11eb-833b-96004301eaee.png" alt="Selecting nodes in your kubernetes">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Creating storage pools in your kubernetes">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265428-5e1ebb00-376c-11eb-9434-651d7e18bd52.png" alt="Creating storage pools in your kubernetes">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="900" title="Kubera Propel Cover Image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265440-83132e00-376c-11eb-941c-7ddda3960ce4.png" alt="Kubera Propel Cover Image">
</div>
</div>
<a href="#Kubera Propel Backend 🚂" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
This project is private😔
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Growth Metrics 📈" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265302-51e62e00-376b-11eb-9b4d-da61f6f46cbb.png" alt="Growth Metrics 📈 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Growth Metrics 📈
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
September 2020 - October 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Backend and UX
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Growth Metrics is a marketing platform for MayaData to track and target thier users who are using their product.
<br><br><b>Status | 🟡</b><br>This project is in <b style="color: orange;">development</b>. But I am not there in the team anymore.
<br><br><b>Team size | 3-5 | 🤼</b><br> <b>My role👉 </b>I have done significant contributions in developing the backend as well as creating the UX of the dashboards.
<br><br><b>Technologies used | 💻</b><br> Golang | GraphQL | Quay.io
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Filtering by IP addresses API(Dashboard)">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265339-89ed7100-376b-11eb-9850-8648c6cae347.png" alt="Filtering by IP addresses API(Dashboard)">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Filtering by popularity API(Dashboard)">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265302-51e62e00-376b-11eb-9b4d-da61f6f46cbb.png" alt="Filtering by popularity API(Dashboard)">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Comparing IPs Dashboard UX">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265351-9bcf1400-376b-11eb-940c-9f9b66cdd736.png" alt="Comparing IPs Dashboard UX">
</div>
</div>
<a href="#Growth Metrics 📈" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
This project is private😔
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Litmus & Repute UX 🧪" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263065-cec3d880-3768-11eb-8a77-d405260a46d9.png" alt="Litmus & Repute UX 🧪 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Litmus & Repute UX 🧪
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
June 2020 - August 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
UX and UI
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Litmus is a toolset to do cloud-native chaos engineering. Litmus provides tools to orchestrate chaos on Kubernetes to help SREs find weaknesses in their deployments. SREs use Litmus to run chaos experiments initially in the staging environment and eventually in production to find bugs, vulnerabilities. Fixing the weaknesses leads to increased resilience of the system.
<br><br><b>Status | 🟡</b><br>This project is in <b style="color: orange;">development</b>. But I am not there in the team anymore. You can have a look at the opensource project <a href="https://github.com/litmuschaos/litmus" target="_blank" rel="noopener noreferrer"><b class="boldlink"> here 👈</b></a>.
<br><br><b>Team size | 110-125 | 🤼</b><br> <b>My role👉 </b>I have done significant contributions in developing the UX of the internal dashboards and workflows.
<br> Also contributed to the making of the brand mascot <b>ChaosBird</b>.
<br><br><b>Technologies used | 💻</b><br> Figma | Kubernetes | React
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Selecting nodes from your kubernetes">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263151-2a8e6180-3769-11eb-95d6-5f408a9b3fba.png" alt="Selecting nodes from your kubernetes">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Homepage Dashboard">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101263065-cec3d880-3768-11eb-8a77-d405260a46d9.png" alt="Homepage Dashboard">
</div>
</div>
<a href="https://github.com/litmuschaos/litmus" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
It's open source😃
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Metab Browser 🎯" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265694-7abbf280-376e-11eb-9ef4-9fd11272f844.png" alt="Metab Browser 🎯 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Metab Browser 🎯
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
Nov 2020 - Present
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Personal Side Project
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Metab is going to be the browser that will make Designers, Developers, Content Creators, Students, and all the working professionals more productive.
<br> Metab will have an avid concept of tabs & task management and will change the way you browse the web today. It will be effective with a lot of proven techniques with different tools integrated into the browser at one place to get everything in front of you and to make you more productive.
<br><br><b>Status | 🟡</b><br>This project is <b style="color: orange;">ideation</b> phase. I will add more features in future to make more information available to my users.
<br><br><b>Team size | 1 | 🤼</b><br> Ahh, I am the only one managing this project😉. From ideation to UX & UI to Development and production. Everything!💪
<br><br><b>Technologies using | 💻</b><br> Figma | React | Golang | Typescript | Electron
<br><br>
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Metab square Logo">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265705-89a2a500-376e-11eb-96bc-4075886cb4b2.png" alt="Metab square Logo">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Metab cover image">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265694-7abbf280-376e-11eb-9ef4-9fd11272f844.png" alt="Metab cover image">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="metab text logo">
<img class="lazyload" src="https://user-images.githubusercontent.com/46858011/101265746-e30ad400-376e-11eb-8bea-9f7f051791d2.png" alt="metab text logo">
</div>
</div>
<a href="https://github.com/metabbrowser" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Design link coming soon🎨
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Startup Ranking India Website 🚀" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="/images/SRI png black.png" alt="Startup Ranking India Website 🚀 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Startup Ranking India Website 🚀
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
September 2019 - April 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Frontend, UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
It is a platform in which the Startups from all over India will be ranked with some parameters and accordingly it will be accessible to the common people so that they can analyze each startup by themselves.
<br>It was a team project and I had done the front end development and design of the UI.
<br><br>
<b>Status | 🟡</b><br>This project is still in <b style="color: orange;">development</b>, but <b>it is a private repository</b>. So I can only show you the Screenshots of what we had done. Check the below Screenshots👇</b><br>
<!--You can have a look at <a class="boldlink" href="http://startuprankingindia.com">startuprankingindia.com 👈</a> in which you can see the live progress till now.-->
<br><b>Team size | 4 | 🤼</b><br><b>My role👉 </b>I was responsible for the UX as well as UI Design and frontend development. Also looked into the SEO of it.
<br><br><b>Technologies used | 💻</b><br> HTML 5 | CSS 3 | Sass | TypeScript | NodeJS | Figma
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Startup Odisha cover image">
<img class="lazyload" src="/images/startup.jpg" alt="Startup Odisha cover image">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Startup Odisha Homepage">
<img class="lazyload" src="/images/startupodishapage.png" alt="Startup Odisha Homepage">
</div>
</div>
<a href="#Startup Ranking India Website 🚀" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Link coming soon <span>🚫</span>
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="CakeShake Website 🎂" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="images/cakeshake.png" alt="CakeShake Website 🎂 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
CakeShake Website 🎂
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
March 2020 - April 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Frontend, UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
CakeShake is a website for cake lovers ❤️️ It will give them a real experience of buying their own <b>customized</b> cakes.
<br><b>Future Plans | ⏳</b><br> Will be using <a href="https://threejs.org/" target="_blank"
rel="noopener noreferrer"><b class="boldlink">Three.js </b></a> library to build 3D cake models. The user can drag and drop ingredients of their wish to make cakes. There will be options to choose predefined designed cakes as well.
<br>
<br>If you are a <b>coder</b> or a <b>designer</b> and you like my portfolio then please do ⭐ this repo 🥺. You can preview the website <a href="https://srikant-code.github.io/CakeShake/index.html" target="_blank"
rel="noopener noreferrer"><b class="boldlink">here 👈 </b></a><br>
<br>
<b data-aos="fade-right" data-aos-delay="100">Status | </b>🟡<br>This project is in <span style="color: rgb(224, 146, 0); font-weight: bold;">development</span>, It is only developed for bigger screen sizes e.g: Laptop, Desktops.<br>
<br><b>Team size | 1 | 🤼</b><br> Ahh, I am the only one managing this project😊. From ideation to UX & UI, Logo design, development and production. Everything!💪
<br>
<br><b>Technologies used | 💻</b><br> JavaScript ES6 | Sass | CSS 3 | HTML 5 | Figma | Adobe XD | Illustrator | Photoshop
<br><br>
<b>Note: </b> It's still in development and all the links are not assigned. Read the warning carefully before visiting the website.
<br><br>
<b style="color: rgb(214, 0, 0);">Warning!</b><br> The current website is <b>not</b> suitable for mobile devices. <br> It is no way responsive and you may see many unexpected garbage. <br> The development is in progress and
it will be available for mobile devices soon. <br>
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="CakeShake logo in red gradient background">
<img class="lazyload" src="/images/cakeshakelogobox.jpg" alt="CakeShake logo in red gradient background">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="CakeShake logo">
<img class="lazyload" src="/images/cakeshake logo.jpg" alt="CakeShake logo">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="CakeShake logo in a paper mockup">
<img class="lazyload" src="/images/logo on paper image.jpg" alt="CakeShake logo in a paper mockup">
</div>
</div>
<a href="https://github.com/srikant-code/CakeShake" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Open Project 🍰
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Jigyasu's Website 👩🎓" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="/images/JIGYASU_LOGO-01.jpg" alt="Jigyasu's Website 👩🎓 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Jigyasu's Website 👩🎓
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
December 2019 - March 2020
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns='http://www.w3.org/2000/svg' width='36' height='25.5' viewBox='0 0 36 25.5'> <path id='Icon_material-laptop-chromebook' data-name='Icon material-laptop-chromebook' d='M33,27V4.5H3V27H0v3H36V27ZM21,27H15V25.5h6Zm9-4.5H6V7.5H30Z' transform='translate(0 -4.5)'/></svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Frontend, UX and UI Design
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
Jigyasu is an education startup in Odisha. It has been doing research in the field of education to develop physical experiments & demonstrations models in Science which are mapped to the curriculum of the schools.
<br> It is a team project specifically aimed for school students from Grades 6-12.
<br><br><b>Status | ✅</b> <br> This project is <b style="color: green;">completed</b>, but <b>it is a private repository</b>. So I can only show you the Screenshots of what we had done. Check the below Screenshots👇</b><br>
<!-- <br> You can have a look at <a class="boldlink" href="https://jigyasu.co.in/">jigyasu.co.in 👈</a> in which you can see the live progress till now.
To know more about this you can go to <a class="boldlink" href="https://jigyasu.co.in/about">jigyasu.co.in/about 👈</a> -->
<br><b>Team size | 3 | 🤼</b><br><b>My role👉 </b>I was responsible for the UX as well as UI Design and frontend development. Also looked into the SEO of it.
<br><br><b>Technologies used | 💻</b><br> HTML 5 | CSS 3 | Sass | TypeScript | NodeJS
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Science Studio page">
<img class="lazyload" src="/images/jig2.png" alt="Science Studio page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="Science studio in landing page">
<img class="lazyload" src="/images/jig3.png" alt="Science studio in landing page">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Landing page">
<img class="lazyload" src="/images/jig4.png" alt="Landing page">
</div>
</div>
<a href="#Jigyasu's Website 👩🎓" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Link coming soon <span>🚫</span>
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="Talk to `The Hello World` Chatbot 🤖" data-aos="fade-left" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="/images/hello.jpg" alt="Talk to `The Hello World` Chatbot 🤖 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
Talk to `The Hello World` Chatbot 🤖
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
June 2019 - July 2019
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns="http://www.w3.org/2000/svg" width="68" height="70" viewBox="0 0 68 70">
<g id="Group_20" data-name="Group 20" transform="translate(921 -5138)">
<circle id="Ellipse_32" data-name="Ellipse 32" cx="19.5" cy="19.5" r="19.5" transform="translate(-921 5138)" fill="#006eff"/>
<circle id="Ellipse_33" data-name="Ellipse 33" cx="11" cy="11" r="11" transform="translate(-881 5158)" fill="#006eff"/>
<circle id="Ellipse_35" data-name="Ellipse 35" cx="12.5" cy="12.5" r="12.5" transform="translate(-884 5183)" fill="#006eff"/>
<circle id="Ellipse_34" data-name="Ellipse 34" cx="4.5" cy="4.5" r="4.5" transform="translate(-862 5151)" fill="#006eff"/>
</g>
</svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Google Assistant
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
This app "The Hello World" gives you information on different ways of writing "Hello World" in different programming languages. Just open your google assistant and try to say "talk to The Hello World" and explore my app.
<br><br><b>Status | 🟡</b><br>This project is <b style="color: orange;">development</b> phase. I will add more features in future to make more information available to my users. You can check out the project using the link below
and try it.
<br> <b>Give it a 5-star rating too😊</b>
<br><br><b>Technologies used | 💻</b><br> Dialogflow | Platform - Google Assistant
<br><br>
<b style="color: rgb(214, 0, 0);">Warning:</b> It's still in development and thus you might see some errors in the conversation.
</div>
<div class="projectImages" data-aos="fade-left" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="App screenshot">
<img class="lazyload" src="/images/helloworldapp.jpg" alt="App screenshot">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="700" title="App screenshot">
<img class="lazyload" src="/images/helloworldapp2.jpg" alt="App screenshot">
</div>
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="800" title="Google Assistant store screenshot">
<img class="lazyload" src="/images/helloworld.png" alt="Google Assistant store screenshot">
</div>
</div>
<a href="https://assistant.google.com/services/a/uid/000000d7b1e5ad85?hl=en-IN" target="_blank" rel="noopener noreferrer" class="projectLinkWrapper" data-aos="fade-up" data-aos-delay="1000">
<div class="projectLink roundedButton">
Try the voice chatbot 🤖
</div>
</a>
</div>
</div>
</div>
<div class="projectsBox" id="States and Capitals Chatbot 🤖" data-aos="fade-right" data-aos-delay="100">
<div class="projectsBoxImage" data-aos="fade-zoom" data-aos-delay="100">
<img class="lazyload" src="/images/states.jpg" alt="States and Capitals Chatbot 🤖 hero image" data-aos="fade-zoom" data-aos-delay="100">
<div class="projectsBoxText">
<div class="projectName" data-aos="fade-right" data-aos-delay="100">
States and Capitals Chatbot 🤖
</div>
<div class="projectDate" data-aos="fade-left" data-aos-delay="100">
July 2019 - August 2019
</div>
<div class="projectTech">
<div class="projectIcons">
<svg xmlns="http://www.w3.org/2000/svg" width="68" height="70" viewBox="0 0 68 70">
<g id="Group_20" data-name="Group 20" transform="translate(921 -5138)">
<circle id="Ellipse_32" data-name="Ellipse 32" cx="19.5" cy="19.5" r="19.5" transform="translate(-921 5138)" fill="#006eff"/>
<circle id="Ellipse_33" data-name="Ellipse 33" cx="11" cy="11" r="11" transform="translate(-881 5158)" fill="#006eff"/>
<circle id="Ellipse_35" data-name="Ellipse 35" cx="12.5" cy="12.5" r="12.5" transform="translate(-884 5183)" fill="#006eff"/>
<circle id="Ellipse_34" data-name="Ellipse 34" cx="4.5" cy="4.5" r="4.5" transform="translate(-862 5151)" fill="#006eff"/>
</g>
</svg>
</div>
<div class="projectTechText" data-aos="fade-right" data-aos-delay="100">
Google Assistant
</div>
</div>
<div class="projectDate onPhone" data-aos="fade-left" data-aos-delay="100">Click here to expand this card 👈</div>
</div>
<div class="projectExpandedContent">
<div class='projectDescription' data-aos='fade-up' data-aos-delay='100'>
It is a very simple app that will give you the information about the States/Union Territory and the Capital of all the States in India. It's made using Dialogflow and hosted on Google Assistant. <br>It is a successful project
and I was able to reach around 16,000 visitors since I published it. There were around 750 unique visitors in the past month.
<br><br><b>Status | ✅</b><br>This project is <b style="color: green;">completed</b>, but I will add more features in future to make more information available to my users. You can check out the project using the link below and try it.
<br><b>Give it a 5-star rating too😊</b>
<br><br><b>Technologies used | 💻</b><br> Dialogflow | Platform - Google Assistant
</div>
<div class="projectImages" data-aos="fade-right" data-aos-delay="100">
<div class="projectImagesSmall" data-aos="fade-up" data-aos-delay="600" title="Google Assistant store screenshot">
<img class="lazyload" src="/images/states of india.png" alt="Google Assistant store screenshot">
</div>