-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1623 lines (1156 loc) · 52 KB
/
index.html
File metadata and controls
1623 lines (1156 loc) · 52 KB
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 class="no-js" lang="en" style="scroll-behavior: smooth;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.1">
<link rel="icon" type="image/gif" href="images/anime.png" sizes="16x16" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous">
</script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet" rel=preload>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-138583957-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-138583957-1');
</script>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Sumesh's Portfolio</title>
<meta name="description" content="Welcome to Sumesh's portfolio website. Know more about him here!">
<meta name="keywords"
content="sumesh,sumesh bharathi,bharathi,sumeshbharathi,sumesh-bharathi,sumesh bharathi ramasamy,sumesh portfolio, sumesh ramasamy">
<meta http-equiv="Cache-control" content="public, max-age=360000, must-revalidate">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=0.1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
</head>
<body id="top">
<div class="container-fluid">
<!-- header
================================================== -->
<header>
<div class="row">
<div class="top-bar">
<a class="menu-toggle" style="margin-left: 0px!important;" href="#"><span>Menu</span></a>
<div class="logo">
<a href="index.html">x</a>
</div>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current"><a class="smoothscroll" href="#intro" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#resume" title="">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio" title="">Portfolio</a></li>
<li><a class="smoothscroll" href="#services" title="">Interests</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
</nav>
</div> <!-- /top-bar -->
</div> <!-- /row -->
</header> <!-- /header -->
<style>
#wts1961629 {
visibility: hidden !important;
}
</style>
<script>
const Http = new XMLHttpRequest();
const url = 'https://portfolio-tracker-api.azurewebsites.net/ping';
Http.open("POST", url);
Http.send();
</script>
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h5>Hello, World .</h5>
<h1>I'm Sumesh Ramasamy.</h1>
<p class="intro-position">
<span>Software Developer</span>
<span>Full Stack development & Flutter</span>
</p>
<a class="button stroke smoothscroll" href="#about" title="">More About Me</a>
</div>
</div>
</div> <!-- /intro-content -->
<ul class="intro-social">
<li><a target="_blank" href="https://www.facebook.com/sumeshbharathi.in/"><i class="fa fa-facebook"></i></a>
</li>
<li><a target="_blank" href="https://github.com/SumeshBharathi"><i class="fa fa-github"></i></a></li>
<li><a target="_blank" href="https://twitter.com/sumesh_ramasamy"><i class="fa fa-twitter"></i></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/sumeshbharathi/"><i class="fa fa-linkedin"></i></a>
</li>
<li><a target="_blank" href="https://www.instagram.com/sumesh.ramasamy/"><i class="fa fa-instagram"></i></a>
</li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h5>About</h5>
<br>
<h1>Let me introduce myself.</h1>
<!-- <img style="border-radius: 10px;" src="images/profile2.jpg" width="40%" alt="Profile Picture"> -->
<br><br>
</div>
</div> <!-- /section-intro -->
<div class="row about-content">
<div class="col-six tab-full" style="text-align: center;">
<img style="border-radius: 10px;" src="sumesh-pic.jpg" width="80%" alt="Profile Picture">
</div>
<div class="col-six tab-full" style="line-height: 1.5;">
<h3 class="p2">Profile</h3>
<ul class="info-list">
<li>
<strong>Fullname:</strong>
<span>Sumesh Bharathi Ramasamy</span>
</li>
<li>
<strong>Email:</strong>
<span><a style="color: gray;" onMouseOver="this.style.color='#f07'" onMouseOut="this.style.color='gray'"
href="mailto:sumeshbharathi@gmail.com" target="_blank"> sumeshbharathi@gmail.com</a></span>
<span><a style="color: gray;" onMouseOver="this.style.color='#f07'" onMouseOut="this.style.color='gray'"
href="mailto:sbr00008@mix.wvu.edu" target="_blank"> sbr00008@mix.wvu.edu</a></span>
</li>
<li>
<strong>Phone:</strong>
<span><a style="color: gray;" onMouseOver="this.style.color='#f07'" onMouseOut="this.style.color='gray'"
href="tel:3048257722" target="_blank">+1(304)825-7722</a></span>
</li>
</ul> <!-- /info-list -->
<h3>Core Skills</h3>
<p>
<ul>
<li>Full Stack development</li>
<li>Mobile Application development</li>
<li>Software Development</li>
</ul>
</p>
<h3>Languages</h3>
<span>Javascript, Dart, Python, HTML5, CSS3</span>
<!-- <ul class="skill-bars">
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Python3</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Javascript</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>HTML5, CSS3</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Dart</strong>
</li>
</ul> -->
<br><br>
<h3>Frameworks</h3>
<span>React, Angular, Node, Flutter</span>
<!-- <ul class="skill-bars"> -->
<!-- <li>
<div class="progress percent90"><span>90%</span></div>
<strong>React JS</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Node JS</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Flutter</strong>
</li> -->
</ul>
<br><br><br>
<ul style="font-size: 30px;padding: 20px;">
<a target="_blank" style="padding: 5px;" href="https://www.facebook.com/sumeshbharathi.in/"><i
class="fa fa-facebook"></i></a>
<a target="_blank" style="padding: 5px;" href="https://github.com/SumeshBharathi"><i
class="fa fa-github"></i></a>
<a target="_blank" style="padding: 5px;" href="https://twitter.com/sumesh_ramasamy"><i
class="fa fa-twitter"></i></a>
<a target="_blank" style="padding: 5px;" href="https://www.linkedin.com/in/sumeshbharathi/"><i
class="fa fa-linkedin"></i></a>
<a target="_blank" style="padding: 5px;" href="https://www.instagram.com/sumesh.ramasamy/"><i
class="fa fa-instagram"></i></a>
</ul>
</ul> <!-- /skill-bars -->
</div>
</div>
<div class="col-twelve tab-full">
</div>
<br><br>
<div class="row button-section " style="padding-top: 20px;">
<div class=" section-intro">
<div class="col-twelve">
<h5>Resume</h5>
<h1>More of my credentials.</h1>
<!-- <a href="#contact" title="Hire Me" class="button stroke smoothscroll">Hire Me</a> -->
<a href="https://drive.google.com/file/d/1XOm-jNQ3m2csxh5tKUqPebe8yp_umnis/view" title="View CV"
class="button button-primary" target="_blank">View CV</a>
</div>
</div>
</div> <!-- /section-intro-->
</section> <!-- /process-->
<!-- resume Section
================================================== -->
<section id="resume" class="grey-section">
<div class="row resume-timeline">
<div class="col resume-header">
<h1>Professional Experiences</h1>
<br>
</div> <!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Associate Consultant<h3>
<p>Jul 2021 - June 2023</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank" href="https://www.oracle.com/in/index.html">Oracle
Corporation</a><br><span style="font-size: medium;">Bangalore, India</span></h3>
Responsibilities:
<ol>
<li>
Designed and implemented the highly customized version of the Flexcube core banking application for
Africa’s largest bank (Eco Bank)
which drives an annual revenue of 1.9 billion dollars, using Oracle’s internal tools - RAD,
Weblogic, Oracle Cloud, and PLSQL.</li>
<li>Played a crucial role in designing and developing SOAP APIs for the high-demand screen accounts
for huge volumes of transactions.</li>
<li>Led the team of developers in building new custom banking features, testing, documentation, and
release.</li>
<li>Helped the expertise team build stub code for feature testing, significantly improving the overall
testing time from 130 to 45 seconds.</li>
<li>Managed the complex offshore setup migrations (RAD Tool, Weblogic console, Flexcube App, SOAP, and
Oracle DB) to new servers.</li>
<li>Automated the process of patchset consolidation (from Kernel releases), resulting in improved
waiting time during application updates.
</li>
</ol>
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Microsoft Student Ambassador<h3>
<p>July 2018 - May 2021</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank"
href="https://studentambassadors.microsoft.com/">Microsoft Student Ambassador (MSA)</a>
<br><span style="font-size: medium;">On Campus - CIT</span>
</h3>
Responsibilities:
<ol>
<li>Worked as an official Microsoft Student Ambassador for my university (CIT) and local zone
(Coimbatore).</li>
<li>Sponsored by Microsoft, to lead the official Microsoft tech events and conduct open live workshops
in my university and region.</li>
</ol>
</p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Full Stack Developer Contract</h3>
<p>Sep 2020 - Jan 2021</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank" href="https://m8itsolutions.com/">M8 IT Solutions</a>
<br><span style="font-size: medium;">Coimbatore, India</span>
</h3>
Responsibilities:
<ol>
<li>
Built an E2E business website for a Malaysian organization (“Trical”), with highly featured admin
dashboard panels.
</li>
<li>
Implemented using MERN stack, with iPay88 (payment gateway), and performed the production
deployment.
</li>
</ol>
</div>
</div><!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Frontend Developer Internship</h3>
<p>Aug 2020 - Sep 2020</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank"
href="https://www.linkedin.com/company/remoteroofing">Roofer ("Remote Roofing")</a>
<br><span style="font-size: medium;">Texas, USA</span>
</h3>
Responsibilities:
<ol>
<li>
Developed the Weather Analytics Dashboard (the core feature of the enterprise) from Figma design
using React and Vue JS.
</li>
<li>
Revamped and optimized the homepage and the landing pages, significantly resulting in a 15% increase
in user retention.
</li>
</ol>
</div>
</div><!-- /timeline-block -->
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Frontend Developer</h3>
<p>Nov 2019 - Jun 2020</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank" href="https://marquee-equity.com/">Marquee Equity</a>
<br><span style="font-size: medium;">New Delhi, India</span>
</h3>
Responsibilities:
<ol>
<li>Designed and developed the front end for the organization using Node Js and Handlebar JS from
Figma designs.</li>
<li>Played a vital role in building highly curated HTML email designs used as campaigns to attract
1000+ global clients.</li>
</ol>
</div>
</div><!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Full Stack Developer</h3>
<p>May 2019 - Apr 2020</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank" href="https://studentambassadors.microsoft.com/">Tech
Mahindra</a> <br><span style="font-size: medium;">Hyderabad, India</span></h3>
</h3>
Responsibilities:
<ol>
<li>
Handled the entire project website (UpX.com) as the primary developer after the lead web developers
left the organization.</li>
<li>Designed and developed the application for user certificate generation with the admin dashboard.
</li>
<li>Improved the SEO metrics and optimized the average website loading time from 4.5 seconds to 2
seconds.</li>
<li>Completely revamped the UI and UX design of the website from the traditional WordPress environment
for the future React project.</li>
</ol>
</div>
</div><!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
<br><br>
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h1>Education</h1>
</div> <!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>MS Computer Science</h3>
<p>Aug 2023 - May 2025</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank" href="https://www.wvu.edu/">West Virginia University
(WVU)</a></h3>
<p>Morgantown, WV, USA<br>CGPA :
3.7 out of 4 </p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>M.Sc Software Systems (Bachelor's integrated program)</h3>
<p>July 2016 - May 2022</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank" href="http://cit.edu.in/">Coimbatore Institute of
Technology (CIT)</a></h3>
<p>Coimbatore, India<br>CGPA :
8.3 out of 10 </p>
</div>
</div>
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>High School</h3>
<p>July 2014 - June 2016</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank"
href="https://www.facebook.com/pages/category/School/Adharsh-Vidhyalaya-Higher-Secondary-School-Anthiyur-176990995706558/">Adharsh
Vidhyalaya Hr. Sec School</a></h3>
<p>Erode, India<br>Score : 92.5 %</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Middle School</h3>
<p>May 2012 - June 2014</p>
</div>
<div class="timeline-content">
<h3><a style="color: #FF0077;" target="_blank"
href="https://schools.org.in/coimbatore/33121801709/literacy-mission-matric-hr-sec-school-samalapuram.html">Literacy
Mission Matric Hr. Sec School</a></h3>
<p>Tiruppur, India<br>Score : 97.2 %</p>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
</section> <!-- /features -->
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row section-intro">
<div class="col-twelve">
<h5>Portfolio</h5>
<h1>Check Out Some of My Apps.</h1>
<p class="lead"></p>
</div>
</div> <!-- /section-intro-->
<div class="row portfolio-content">
<div class="col-twelve">
<!-- portfolio-wrapper -->
<div id="folio-wrapper" class="block-1-2 block-mob-full stack">
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="https://gengram.ai/vite.svg" width="60%" style="padding: 40px;" alt="Gitgram">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Gengram.ai<br>(AI Resume customizer)</span>
<a href="#modal-001" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Gengram.ai</h3>
<span class="folio-types">
Web
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/ezdz_official_3_orange.png" width="60%" style="padding: 40px;" alt="Gitgram">
<br>
<span style="font-family: 'Montserrat', sans-serif;">EzDz.shop<br>(create your business store for web/android/iOS platforms)</span>
<a href="#modal-002" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">EzDz.shop</h3>
<span class="folio-types">
Web/Android/iOS
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/gitgram.webp" width="60%" alt="Gitgram">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Gitgram<br>(developed with ♥️ for sleek
design)</span>
<a href="#modal-01" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Gitgram</h3>
<span class="folio-types">
Android
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/tesla.webp" width="60%" alt="Reel Box">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Dashboard for Tesla<br>(20K+ App store
downloads)</span>
<a href="#modal-02" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Dashboard for Tesla</h3>
<span class="folio-types">
Android
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/blower.webp" width="60%" alt="Blower">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Candle Blower <br>(5M+ App store downloads)</span>
<a href="#modal-03" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Candle Blower</h3>
<span class="folio-types">
Android
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/register.webp" width="60%" alt="Register Book">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Register Book</span>
<a href="#modal-07" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Register Book</h3>
<span class="folio-types">
Android
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/remo.webp" width="60%" alt="Polydimensional">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Remo</span>
<a href="#modal-05" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Remo</h3>
<span class="folio-types">Android
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<div class="bgrid folio-item" style="padding: 30px;">
<div class="item-wrap" style="text-align: center;">
<img src="images/textile.webp" width="60%" alt="Textile Calculator">
<br>
<span style="font-family: 'Montserrat', sans-serif;">Textile Calculator</span>
<a href="#modal-06" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Textile Calculator</h3>
<span class="folio-types">
Flutter Application
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- modal popups - begin
============================================================= -->
<div id="modal-001" class="popup-modal slider mfp-hide">
<div class="media" style="text-align: center;">
<img src="images/vite.svg" width="50%" alt="Gitgram" />
</div>
<div class="description-box">
<h4>Gengram.ai</h4>
<p>AI-powered resume builder using LLMs (NLP-based job-matching and optimization).<br><br>
<h4>Technology stack:</h4>
<p>React, Node Js, Azure, ChatGPT, MongoDB</p><br>
<p>
<a target="_blank" style="color: green;"
href="https://play.google.com/store/apps/details?id=io.github.sumeshbharathi.githubtimeline">
<div class="text-center"> 🔗 https://gengram.ai
</div>
</a>
<br>
</p>
<br>
</p>
<div class="categories">Web</div>
</div>
<div class="link-box">
<a href="">Home</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-001 -->
<div id="modal-002" class="popup-modal slider mfp-hide">
<div class="media" style="text-align: center;">
<img src="images/ezdz_official_3_orange.png" width="50%" alt="Gitgram" />
</div>
<div class="description-box">
<h4>EzDz.shop</h4>
<p> Anyone can create their business app in minutes using EzDz.<br><br>
<h4>Technology stack:</h4>
<p>Flutter, Node Js, MongoDB, Azure</p><br>
<p>
<div>
Business App: <a target="_blank" style="color: green;"
href="https://play.google.com/store/apps/details?id=shop.ezdz.business">
<div class="text-center"> <img src="images/playstore.png" width="50%" alt="EzDz Shop" />
</div>
</a>
<br/><br/>
Customer App: <a target="_blank" style="color: green;"
href="https://play.google.com/store/apps/details?id=com.ezdz.store&gl=us">
<div class="text-center"> <img src="images/playstore.png" width="50%" alt="EzDz Shop" />
</div>
</a>
</div>
<br>
</p>
<br>
</p>
<div class="categories">Web, Android, iOS</div>
</div>
<div class="link-box">
<a href="">Home</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-002 -->
<div id="modal-01" class="popup-modal slider mfp-hide">
<div class="media" style="text-align: center;">
<img src="images/gitgram.webp" width="50%" alt="Gitgram" />
</div>
<div class="description-box">
<h4>Gitgram</h4>
<p>Gitgram makes the user interaction of searching the GitHub profiles much easier and way of more
fun.<br><br>
<h4>Technology stack:</h4>
<p>Flutter, Node Js</p><br>
<p>
<a target="_blank" style="color: green;"
href="https://play.google.com/store/apps/details?id=io.github.sumeshbharathi.githubtimeline">
<div class="text-center"> <img src="images/playstore.png" width="50%" alt="GitHub Timeline" />
</div>
</a>
<br>
</p>
<br>
</p>
<div class="categories">Android</div>
</div>
<div class="link-box">
<a href="">Home</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-01 -->
<div id="modal-02" class="popup-modal slider mfp-hide">
<div class="media" style="text-align: center;">
<img src="images/tesla.webp" width="50%" alt="Tesla" />
</div>
<div class="description-box">
<h4>Dashboard for Tesla</h4>
<p>Experience the Dashboard (Touchscreen) for the Tesla system on your smartphone.<br><br>
<h4>Technology stack:</h4>
<p>Flutter, Node Js</p><br>
<p>
<a target="_blank" style="color: green;"
href="https://play.google.com/store/apps/details?id=com.sumeshbharathi.tesla">
<div class="text-center"> <img src="images/playstore.png" width="50%" alt="Tesla" /></div>
</a>
</p>
<br>
</p>
<div class="categories">Android</div>
</div>
<div class="link-box">
<a href="">Home</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-02 -->
<div id="modal-03" class="popup-modal slider mfp-hide">
<div class="media" style="text-align: center;">
<img src="images/blower.webp" width="50%" alt="Blower" />
</div>
<div class="description-box">
<h4>Candle Blower</h4>
<p>The Blower helps you to blow out the candles with just your smartphone.<br><br>
<h4>Technology stack:</h4>