-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1854 lines (1847 loc) · 76.5 KB
/
Copy pathindex.html
File metadata and controls
1854 lines (1847 loc) · 76.5 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 lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<title>Gilles Momeni 🤟</title>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" href="/images/assets/favicon.png" type="image/x-icon">
<script>
if (
navigator.userAgent.indexOf("Firefox") !== -1 ||
navigator.userAgent.indexOf("Opera") !== -1
) {
document
.querySelector('meta[name="theme-color"]')
.setAttribute("content", "#000000");
}
</script>
<meta
name="description"
content="Young Cameroonian Fullstack JavaScript Developer and Data Scientist. Specializing in building modern web applications, data-driven solutions, and AI-powered tools. Passionate about coding, innovation, and solving real-world problems."
/>
<meta name="author" content="Gilles Momeni" />
<meta name="robots" content="noodp" />
<link rel="manifest" href="/asset-manifest.json" />
<link
rel="icon shortcut"
href="/images/favicon-32.png"
sizes="16x16"
type="image/png"
/>
<link
rel="icon"
href="/images/favicon-32.png"
sizes="32x32"
type="image/png"
/>
<link
rel="icon"
href="/images/favicon-48.png"
sizes="48x48"
type="image/png"
/>
<link
rel="icon"
href="/images/favicon-62.png"
sizes="62x62"
type="image/png"
/>
<link
rel="icon"
href="/images/favicon-96.png"
sizes="96x96"
type="image/png"
/>
<link rel="apple-touch-icon" href="/images/favicon-192.png" />
<link rel="canonical" href="https://portfolio-v2-menoc61.vercel.app" />
<meta property="og:image" content="/images/cover-share.jpg" />
<meta
property="og:title"
content="Gilles Momeni. Data scientist, Developer & Designer"
/>
<meta
property="og:description"
content="Just a young full stack software and mobile app developer, good in problem solving, passionate about code and only know how to Google. (●'◡'●) 👨💻"
/>
<meta property="og:url" content="https://portfolio-v2-menoc61.vercel.app" />
<meta name="twitter:card" content="summary" />
<meta
name="twitter:site"
content="https://portfolio-v2-menoc61.vercel.app"
/>
<meta name="twitter:creator" content="@gillemomeni" />
<meta
name="twitter:url"
content="https://portfolio-v2-menoc61.vercel.app"
/>
<meta
name="twitter:title"
content="Gilles Momeni. Data scientist, Developer & Designer"
/>
<meta
name="twitter:description"
content="Just a young full stack software and mobile app developer, good in problem solving, passionate about code and only know how to Google. (●'◡'●) 👨💻"
/>
<meta name="twitter:image" content="/images/cover-share.jpg33" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "CreativeWork",
"name": "Gilles Momeni",
"url": "https://portfolio-v2-menoc61.vercel.app",
"sameAs": [
"https://twitter.com/gillemomeni",
"https://www.facebook.com/gille momeni/"
]
}
</script>
<script>
var _paq = (window._paq = window._paq || []);
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function () {
var u = "//https://portfolio-v2-menoc61.vercel.app/analytics/";
_paq.push(["setTrackerUrl", u + "matomo.php"]);
_paq.push(["setSiteId", "1"]);
var d = document,
g = d.createElement("script"),
s = d.getElementsByTagName("script")[0];
g.async = true;
g.src = u + "matomo.js";
s.parentNode.insertBefore(g, s);
})();
</script>
<script defer="defer" src="index.js"></script>
<link href="main.bundle.css" rel="stylesheet" />
</head>
<body>
<header id="header" class="fixed--bg" role="banner">
<div class="wrap-header--padding-sm">
<nav class="main-navigation">
<div class="title">
<a href="/"><span class="h6">menoc61</span></a>
<span class="h6"
><a href="https://github.com/menoc61">Dev portfolio</a></span
>
</div>
<div id="main-menu" aria-expanded="false" role="navigation">
<ul>
<li class="h6"><a href="#cases">works</a></li>
<li class="h6"><a href="#intro">about</a></li>
<li class="h6"><a href="#footer">contact</a></li>
</ul>
</div>
<progress max="100" value="0"></progress>
</nav>
<div class="scroller"></div>
</div>
</header>
<div id="not-supported">
<h2 class="heading--uppercase">
<span class="split"
><div class="line">Orientation</div>
<div class="symbol"><div></div></div></span
><span class="split"><div class="line">not supported</div></span>
</h2>
</div>
<main id="main-wrap" class="loading">
<div class="page-header" id="hero">
<div class="main-bg">
<div class="plane">
<picture>
<!-- 4K Resolution -->
<source
type="image/webp"
data-src="/images/herobg-4k.webp 1x, /images/herobg-4k@2x.webp 2x"
media="(min-width: 2561px)"
/>
<source
type="image/jpg"
data-src="/images/herobg-4k.jpg 1x, /images/herobg-4k@2x.jpg 2x"
media="(min-width: 2561px)"
/>
<!-- 2K Resolution -->
<source
type="image/webp"
data-src="/images/herobg-2k.webp 1x, /images/herobg-2k@2x.webp 2x"
media="(min-width: 1930px)"
/>
<source
type="image/jpg"
data-src="/images/herobg-2k.jpg 1x, /images/herobg-2k@2x.jpg 2x"
media="(min-width: 1930px)"
/>
<!-- HD Resolution -->
<source
type="image/webp"
data-src="/images/herobg-hd.webp 1x, /images/herobg-hd@2x.webp 2x"
media="(min-width: 1441px)"
/>
<source
type="image/jpg"
data-src="/images/herobg-hd.jpg 1x, /images/herobg-hd@2x.jpg 2x"
media="(min-width: 1441px)"
/>
<!-- Pi Resolution -->
<source
type="image/webp"
data-src="/images/herobg-pi.webp 1x, /images/herobg-pi@2x.webp 2x"
media="(min-width: 1281px)"
/>
<source
type="image/jpg"
data-src="/images/herobg-pi.jpg 1x, /images/herobg-pi@2x.jpg 2x"
media="(min-width: 1281px)"
/>
<!-- Medium Resolution -->
<source
type="image/webp"
data-src="/images/herobg-md.webp 1x, /images/herobg-md@2x.webp 2x"
media="(min-width: 481px)"
/>
<source
type="image/jpg"
data-src="/images/herobg-md.jpg 1x, /images/herobg-md@2x.jpg 2x"
media="(min-width: 481px)"
/>
<!-- Mobile Resolution -->
<source
type="image/webp"
data-src="/images/herobg-mobile@2x.webp 1x, /images/herobg-md.webp 2x"
media="(max-width: 414px)"
/>
<source
type="image/jpg"
data-src="/images/herobg-mobile@2x.jpg 1x, /images/herobg-md.jpg 2x"
media="(max-width: 414px)"
/>
<!-- Fallback Image -->
<img
class="parallax lazyload"
width="2160"
height="2028"
data-src="/images/herobg-hd.jpg"
alt=""
role="presentation"
/>
</picture>
</div>
</div>
<div class="availability">
<div class="scaling-svg">
<img
src="images/star.png"
width="60"
height="60"
alt=""
role="presentation"
/>
</div>
<div class="data" data-day>
<span data-count-to="0">0</span> <span data-count-to="0">0</span>
</div>
<div class="label">
<span class="h2" data-month>jan</span>
<span class="h5">available</span> <span class="h5">for work</span>
</div>
</div>
<div class="main-wrapper">
<div class="text">
<div class="toptitle-element"><span>creative</span></div>
<h1 class="uppercase">
<span class="split"
><div class="line">Designer</div>
<div class="symbol"><div></div></div></span
><span class="split"><div class="line">developer</div></span>
</h1>
</div>
<div class="content">
<p class="h2--uppercase hero-animation-line" data-margin="none">
I am Gilles Momeni
</p>
<p class="h2--uppercase hero-animation-line" data-margin="none">
Just a young full stack software and mobile app developer, good in
problem solving, passionate about code and only know how to
Google. (●'◡'●) 👨💻
</p>
<a
href="#footer"
class="btn--md--extra--border--animation"
role="button"
data-speed="3"
><span>Contact me</span>
<div class="marquee" aria-hidden="true">
<div class="marquee--inner">
<span>Contact me</span> <span>Contact me</span>
<span>Contact me</span> <span>Contact me</span
><span>Contact me</span> <span>Contact me</span>
<span>Contact me</span> <span>Contact me</span>
</div>
</div></a
>
</div>
</div>
</div>
<div class="page-content">
<section id="intro">
<div class="main-wrapper">
<div class="text">
<h2 class="heading--uppercase--inline">
<span class="split"
><span class="line">About me</span>
<div class="symbol--right">Gilles Momeni</div></span
>
</h2>
<p class="h2--uppercase animation-line" data-margin="none">
I use my passion and skills
</p>
<p class="h2--uppercase animation-line" data-margin="none">
to create digital products and experiences. National and
international customers rely on me for design, implementation,
and management of their enterprise digital projects. As an
independent, I work also with web agencies, companies, startups
and individuals to create a blueprint for the digital business.
Advisor and partner of some digital, fintech startups,
</p>
</div>
<div id="model-wrapper" class="content">
<canvas class="webgl"></canvas>
<div class="caption item-fade">
<p
class="h2--uppercase"
data-margin="none"
data-subtitle-left="using THREE.js and R3F"
>
<span>And 3D experiences</span
><svg
width="104"
height="54"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.66 4.442C19.968 3.87 51.687 7.98 59.806 10.15c8.119 2.17 42.004 11.335 42.193 22.216.19 10.881-23.966 21.44-51.095 18.938C23.775 48.802 2.174 36.415 2.001 25.7 1.828 14.986 19.498 5.55 42.092 2.767c22.595-2.785 62.01 7.677 49.853 28.879"
stroke="#F3DBC7"
stroke-width="3"
fill="none"
fill-rule="evenodd"
/>
</svg>
</p>
<svg width="136" height="90" xmlns="http://www.w3.org/2000/svg">
<path
d="M1.791 49.777c-.154 4.195-.626 7.827.954 11.852C7.36 73.39 17.485 82.682 29.442 85.955c6.397 1.75 13.576 2.803 20.193 1.89C62.927 86.012 76.9 76.609 87.222 68.784c20.494-15.536 36.094-38.7 35.837-65.222-.256 2.407 2.277 5.37 3.358 7.347 3.17 5.796 5.405 12.093 8.129 18.101.294-2.43-1.167-8.517-1.441-9.82a58.697 58.697 0 0 0-4.824-15.298 6.762 6.762 0 0 1-1.419-2.863c-3.007-.098-5.698.975-8.074 3.217-7.107 4.072-13.72 9.399-19.817 14.854"
stroke="#FFF"
stroke-width="2"
fill="none"
fill-rule="evenodd"
/>
</svg>
</div>
</div>
</div>
</section>
<section class="section-title">
<div class="main-wrapper">
<div class="text">
<div class="scaling-svg">
<img
src="images/star.png"
width="60"
height="60"
alt=""
role="presentation"
/>
</div>
<div class="info item-fade">
<p class="h2--uppercase" data-margin="none">
<span>Our Big Projects</span>
</p>
</div>
</div>
</div>
</section>
<section id="cases">
<div class="main-wrapper">
<div class="grid grid--large">
<div class="grid__cell grid__cell-c1-r1">
<div class="wrapper">
<h3 class="heading--uppercase--inline">
<span class="div"
><span class="line">Zepythagore</span></span
>
</h3>
<p
class="uppercase animation-line content__item-text"
data-margin="none"
>
Mobile and Web Application
</p>
</div>
</div>
<div class="grid__cell grid__cell-c2-r1">
<div class="grid__cell-img">
<div class="grid__cell-img-inner" data-item="item-1">
<picture>
<img
class="lazyload"
data-src="/images/assets/zepythagore.png"
alt="zepythagore Project | Gilles Momeni"
/>
</picture>
</div>
</div>
</div>
<div class="grid__cell grid__cell-c1-r2">
<div class="grid__cell-img">
<div class="grid__cell-img-inner" data-item="item-2">
<picture
><source
type="image/webp"
data-src="/images/beatrice-cortese-4k.webp 1x, /images/beatrice-cortese-4k@2x.webp 2x"
media="--4k" />
<source
type="image/jpg"
data-src="/images/beatrice-cortese-4k.jpg 1x, /images/beatrice-cortese-4k@2x.jpg 2x"
media="--4k" />
<source
type="image/webp"
data-src="/images/beatrice-cortese-2k.webp 1x, /images/beatrice-cortese-2k@2x.webp 2x"
media="--2k" />
<source
type="image/jpg"
data-src="/images/beatrice-cortese-2k.jpg 1x, /images/beatrice-cortese-2k@2x.jpg 2x"
media="--2k" />
<source
type="image/webp"
data-src="/images/beatrice-cortese-hd.webp 1x, /images/beatrice-cortese-hd@2x.webp 2x"
media="--hd" />
<source
type="image/jpg"
data-src="/images/beatrice-cortese-hd.jpg 1x, /images/beatrice-cortese-hd@2x.jpg 2x"
media="--hd" />
<source
type="image/webp"
data-src="/images/beatrice-cortese-pi.webp 1x, /images/beatrice-cortese-pi@2x.webp 2x"
media="--pi" />
<source
type="image/jpg"
data-src="/images/beatrice-cortese-pi.jpg 1x, /images/beatrice-cortese-pi@2x.jpg 2x"
media="--pi" />
<source
type="image/webp"
data-src="/images/beatrice-cortese-md.webp 1x, /images/beatrice-cortese-md@2x.webp 2x"
media="--md" />
<source
type="image/jpg"
data-src="/images/beatrice-cortese-md.jpg 1x, /images/beatrice-cortese-md@2x.jpg 2x"
media="--md" />
<source
type="image/webp"
data-src="/images/beatrice-cortese-mobile.webp 1x, /images/beatrice-cortese-mobile@2x.webp 2x"
media="--mobile" />
<source
type="image/jpg"
data-src="/images/beatrice-cortese-mobile.jpg 1x, /images/beatrice-cortese-mobile@2x.jpg 2x"
media="--mobile" />
<img
class="lazyload grid__bg-img"
width="912"
height="431"
data-src="/images/beatrice-cortese-hd.jpg"
alt="Beatrice Cortese Project by Gilles Momeni"
/></picture>
</div>
</div>
</div>
<div class="grid__cell grid__cell-c2-r2">
<div class="wrapper">
<h3 class="heading--uppercase--inline">
<span class="div"
><span class="line">FarmAssist</span></span
>
</h3>
<p
class="uppercase animation-line content__item-text"
data-margin="none"
>
IOT,AI,Mobile and Web Application
</p>
</div>
</div>
<div class="grid__cell grid__cell-c2-r3">
<div class="grid__cell-img">
<div class="grid__cell-img-inner" data-item="item-3">
<picture>
<img
class="lazyload"
data-src="/images/assets/autospace.png"
alt="autospaceProject | Gilles Momeni"
/>
</picture>
</div>
</div>
</div>
<div class="grid__cell grid__cell-c3-r3">
<div class="wrapper">
<h3 class="heading--uppercase--inline">
<span class="div"><span class="line">Autospace</span></span>
</h3>
<p
class="uppercase animation-line content__item-text"
data-margin="none"
>
IoT,Mobile and Web Application
</p>
</div>
</div>
<div class="grid__cell grid__cell-c2-r4">
<div class="wrapper">
<h3 class="heading--uppercase--inline">
<span class="div"
><span class="line">Parking Management </span>
</span>
</h3>
<p
class="uppercase animation-line content__item-text"
data-margin="none"
>
IOT,web Development
</p>
</div>
</div>
<div class="grid__cell grid__cell-c3-r4">
<div class="grid__cell-img">
<div class="grid__cell-img-inner" data-item="item-4">
<picture
><source
type="image/webp"
data-src="/images/house4crowd-4k.webp 1x, /images/house4crowd-4k@2x.webp 2x"
media="--4k" />
<source
type="image/jpg"
data-src="/images/house4crowd-4k.jpg 1x, /images/house4crowd-4k@2x.jpg 2x"
media="--4k" />
<source
type="image/webp"
data-src="/images/house4crowd-2k.webp 1x, /images/house4crowd-2k@2x.webp 2x"
media="--2k" />
<source
type="image/jpg"
data-src="/images/house4crowd-2k.jpg 1x, /images/house4crowd-2k@2x.jpg 2x"
media="--2k" />
<source
type="image/webp"
data-src="/images/house4crowd-hd.webp 1x, /images/house4crowd-hd@2x.webp 2x"
media="--hd" />
<source
type="image/jpg"
data-src="/images/house4crowd-hd.jpg 1x, /images/house4crowd-hd@2x.jpg 2x"
media="--hd" />
<source
type="image/webp"
data-src="/images/house4crowd-pi.webp 1x, /images/house4crowd-pi@2x.webp 2x"
media="--pi" />
<source
type="image/jpg"
data-src="/images/house4crowd-pi.jpg 1x, /images/house4crowd-pi@2x.jpg 2x"
media="--pi" />
<source
type="image/webp"
data-src="/images/house4crowd-md.webp 1x, /images/house4crowd-md@2x.webp 2x"
media="--md" />
<source
type="image/jpg"
data-src="/images/house4crowd-md.jpg 1x, /images/house4crowd-md@2x.jpg 2x"
media="--md" />
<source
type="image/webp"
data-src="/images/house4crowd-mobile.webp 1x, /images/house4crowd-mobile@2x.webp 2x"
media="--mobile" />
<source
type="image/jpg"
data-src="/images/house4crowd-mobile.jpg 1x, /images/house4crowd-mobile@2x.jpg 2x"
media="--mobile" />
<img
class="lazyload grid__bg-img"
width="912"
height="431"
data-src="/images/house4crowd-hd.jpg"
alt="Codeway Project by Gilles Momeni"
/></picture>
</div>
</div>
</div>
<div class="grid__cell grid__cell-c1-r5">
<div class="wrapper">
<h3 class="heading--uppercase--inline">
<span class="div"><span class="line">Xmoni</span></span>
</h3>
<p
class="uppercase animation-line content__item-text"
data-margin="none"
>
web application, Mobile
</p>
</div>
</div>
<div class="grid__cell grid__cell-c2-r5">
<div class="grid__cell-img">
<div class="grid__cell-img-inner" data-item="item-5">
<picture>
<img
class="lazyload"
data-src="/images/assets/xmoni.png"
alt="xmoni Project | Gilles Momeni"
/>
</picture>
</div>
</div>
</div>
</div>
<div class="content">
<div class="content__item" id="item-1">
<h2 class="content__item-heading animation-title uppercase">
<span class="split"><div class="line">Zepythagore</div></span>
</h2>
<p class="content__item-text uppercase">
With a network of more than 100 professors who are experts in
their fields and a multitude of students who are the top of
their classes, ZEPYTHAGOR, through them, provides you with a
range of proofreading tools available on the platform, thus
guaranteeing their reliability. <br />It is because a problem
equals a solution with us that being part of ours will
contribute to your exponential growth through our range of
content.
</p>
<button class="back" aria-label="Go Back">
<svg
width="192"
height="61"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M190.67 59.618c-3.755-6.474-8.055-8.114-15.08-12.037-29.012-16.203-60.856-27.41-93.698-33.032-23.62-4.042-47.563-3.598-70.249 3.098.924 1.042 2.057.631 3.013 1.476.703.62 1.135 1.93 1.81 2.68 1.814 2.007 10 9.118 12.865 7.498-2.329-1.766-5.88-3.105-8.504-4.314-5.608-2.583-11.812-7.142-17.819-8.491 2.17-2.823 19.724-19.765 22.96-12.718"
stroke="#FFF"
stroke-width="3"
fill="none"
fill-rule="evenodd"
/>
</svg>
</button>
<div class="footer">
<div class="line"></div>
<div class="info">
<p class="uppercase">Role: UI/UX and Backend Developer</p>
<p class="uppercase awards">2021 01-project</p>
</div>
<div class="cta">
<a
href="https://zepythagore.com/"
target="_blank"
rel="noopener"
>see case
<svg
width="17"
height="17"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14.875 13.357V3.643L1.518 17 0 15.482 13.357 2.125H3.643V0H17v13.357z"
fill="#FFF"
fill-rule="nonzero"
/>
</svg>
</a>
</div>
</div>
</div>
<div class="content__item" id="item-2">
<h2 class="content__item-heading animation-title uppercase">
<span class="split"><div class="line">FarmAssist</div></span>
</h2>
<p class="content__item-text uppercase">
Farmassist - Your all-in-one app for data-driven farming,it is
a smart farming app for IoT and AI-powered plant disease
detection. It is built with Flutter later migrated to expo app
and uses Firebase as its backend service.
</p>
<button class="back" aria-label="Go Back">
<svg
width="192"
height="61"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M190.67 59.618c-3.755-6.474-8.055-8.114-15.08-12.037-29.012-16.203-60.856-27.41-93.698-33.032-23.62-4.042-47.563-3.598-70.249 3.098.924 1.042 2.057.631 3.013 1.476.703.62 1.135 1.93 1.81 2.68 1.814 2.007 10 9.118 12.865 7.498-2.329-1.766-5.88-3.105-8.504-4.314-5.608-2.583-11.812-7.142-17.819-8.491 2.17-2.823 19.724-19.765 22.96-12.718"
stroke="#FFF"
stroke-width="3"
fill="none"
fill-rule="evenodd"
/>
</svg>
</button>
<div class="footer">
<div class="line"></div>
<div class="info">
<p class="uppercase">
Role: UI/UX, Frontend and Backend Developer
</p>
<p class="uppercase awards">2023 02-project</p>
</div>
<div class="cta">
<a
href="https://farmassist-doc.netlify.app/"
target="_blank"
rel="noopener"
>see case
<svg
width="17"
height="17"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14.875 13.357V3.643L1.518 17 0 15.482 13.357 2.125H3.643V0H17v13.357z"
fill="#FFF"
fill-rule="nonzero"
/>
</svg>
</a>
</div>
</div>
</div>
<div class="content__item" id="item-3">
<h2 class="content__item-heading animation-title uppercase">
<span class="split"><div class="line">Autospace</div></span>
</h2>
<p class="content__item-text uppercase">
Autospace is a comprehensive parking management suite designed
to revolutionize the way parking facilities operate. Whether
you're managing a small parking lot or a large-scale parking
facility, Autospace provides an all-in-one solution to
streamline operations, enhance user experience, and maximize
efficiency. From real-time parking availability tracking to
automated payment systems, Autospace is built to simplify
parking management for operators and users alike.
</p>
<button class="back" aria-label="Go Back">
<svg
width="192"
height="61"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M190.67 59.618c-3.755-6.474-8.055-8.114-15.08-12.037-29.012-16.203-60.856-27.41-93.698-33.032-23.62-4.042-47.563-3.598-70.249 3.098.924 1.042 2.057.631 3.013 1.476.703.62 1.135 1.93 1.81 2.68 1.814 2.007 10 9.118 12.865 7.498-2.329-1.766-5.88-3.105-8.504-4.314-5.608-2.583-11.812-7.142-17.819-8.491 2.17-2.823 19.724-19.765 22.96-12.718"
stroke="#FFF"
stroke-width="3"
fill="none"
fill-rule="evenodd"
/>
</svg>
</button>
<div class="footer">
<div class="line"></div>
<div class="info">
<p class="uppercase">
Role: UI/UX, Frontend and Backend Developer
</p>
<p class="uppercase awards"></p>
</div>
<div class="cta">
<a
href="https://autospace-workshop-web.vercel.app/"
target="_blank"
rel="noopener"
>see case (dev demo)
<svg
width="17"
height="17"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14.875 13.357V3.643L1.518 17 0 15.482 13.357 2.125H3.643V0H17v13.357z"
fill="#FFF"
fill-rule="nonzero"
/>
</svg>
</a>
</div>
</div>
</div>
<div class="content__item" id="item-4">
<h2 class="content__item-heading animation-title uppercase">
<span class="split"
><div class="line">Parking Management App</div></span
>
</h2>
<p class="content__item-text uppercase">
Parking Management App with Admin Dashboard & ALPR Simulator
is a comprehensive, tech-driven solution designed to modernize
parking operations for businesses, municipalities, and parking
facility operators. This innovative platform combines a
user-friendly mobile app, a powerful admin dashboard, and an
Automated License Plate Recognition (ALPR) simulator to
streamline parking management, enhance security, and improve
user experience. Whether you're managing a single parking lot
or a network of facilities, this app provides the tools you
need to optimize operations, reduce costs, and deliver a
seamless parking experience.
</p>
<button class="back" aria-label="Go Back">
<svg
width="192"
height="61"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M190.67 59.618c-3.755-6.474-8.055-8.114-15.08-12.037-29.012-16.203-60.856-27.41-93.698-33.032-23.62-4.042-47.563-3.598-70.249 3.098.924 1.042 2.057.631 3.013 1.476.703.62 1.135 1.93 1.81 2.68 1.814 2.007 10 9.118 12.865 7.498-2.329-1.766-5.88-3.105-8.504-4.314-5.608-2.583-11.812-7.142-17.819-8.491 2.17-2.823 19.724-19.765 22.96-12.718"
stroke="#FFF"
stroke-width="3"
fill="none"
fill-rule="evenodd"
/>
</svg>
</button>
<div class="footer">
<div class="line"></div>
<div class="info">
<p class="uppercase">
Role: UI/UX, Frontend and Backend Developer
</p>
<p class="uppercase awards"></p>
</div>
<div class="cta">
<a
href="https://uhcxplore.com/portfolio/parking-management-app-alpr-simulator"
target="_blank"
rel="noopener"
>see case
<svg
width="17"
height="17"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14.875 13.357V3.643L1.518 17 0 15.482 13.357 2.125H3.643V0H17v13.357z"
fill="#FFF"
fill-rule="nonzero"
/>
</svg>
</a>
</div>
</div>
</div>
<div class="content__item" id="item-5">
<h2 class="content__item-heading animation-title uppercase">
<span class="split"><div class="line">Xmoni</div></span>
</h2>
<p class="content__item-text uppercase">
Introducing on Xmoni – the complete, all-in-one financial
solution. Xmoni simplifies financial management with seamless
transfers, secure payments, and smart savings tools. With a
focus on innovation and security, it empowers users to take
control of their finances effortlessly.
</p>
<button class="back" aria-label="Go Back">
<svg
width="192"
height="61"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M190.67 59.618c-3.755-6.474-8.055-8.114-15.08-12.037-29.012-16.203-60.856-27.41-93.698-33.032-23.62-4.042-47.563-3.598-70.249 3.098.924 1.042 2.057.631 3.013 1.476.703.62 1.135 1.93 1.81 2.68 1.814 2.007 10 9.118 12.865 7.498-2.329-1.766-5.88-3.105-8.504-4.314-5.608-2.583-11.812-7.142-17.819-8.491 2.17-2.823 19.724-19.765 22.96-12.718"
stroke="#FFF"
stroke-width="3"
fill="none"
fill-rule="evenodd"
/>
</svg>
</button>
<div class="footer">
<div class="line"></div>
<div class="info">
<p class="uppercase">
Role: UI/UX, Frontend and Backend Developer
</p>
<p class="uppercase awards">01 Awards</p>
</div>
<div class="cta">
<a href="https://xmoni.io" target="_blank" rel="noopener"
>see case
<svg
width="17"
height="17"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14.875 13.357V3.643L1.518 17 0 15.482 13.357 2.125H3.643V0H17v13.357z"
fill="#FFF"
fill-rule="nonzero"
/>
</svg>
</a>
</div>
</div>
</div>
<nav class="grid grid--mini" display="none">
<div class="grid__cell grid__cell-c1-r1">
<div class="grid__cell-img">
<div class="grid__cell-img-inner"></div>
</div>
</div>
<div class="grid__cell grid__cell-c3-r1">
<div class="grid__cell-img">
<div class="grid__cell-img-inner"></div>
</div>
</div>
<div class="grid__cell grid__cell-c4-r1">
<div class="grid__cell-img">
<div class="grid__cell-img-inner"></div>
</div>
</div>
<div class="grid__cell grid__cell-c1-r2">
<div class="grid__cell-img">
<div class="grid__cell-img-inner"></div>
</div>
</div>
<div class="grid__cell grid__cell-c3-r2">
<div class="grid__cell-img">
<div class="grid__cell-img-inner"></div>
</div>
</div>
</nav>
</div>
</div>
</section>
<section class="section-title--cta">
<div class="main-wrapper">
<div class="text">
<div class="info">
<p class="fsecondary item-fade h5">
<span>Yes, these are</span><span>some buttons</span>
</p>
<a
href="m"
data-speed="3"
class="btn--md--extra--border--animation item-fade"
role="button"
><span>Contact me</span>
<div class="marquee" aria-hidden="true">
<div class="marquee--inner">
<span>Contact me</span> <span>Contact me</span>
<span>Contact me</span> <span>Contact me</span
><span>Contact me</span> <span>Contact me</span>
<span>Contact me</span> <span>Contact me</span>
</div>
</div></a
><button
data-work
data-speed="3"
class="btn--md--extra--border--animation--light item-fade"
aria-label="Go To Other Cases"
>
<span>Personal Achievements</span>
<div class="marquee" aria-hidden="true">
<div class="marquee--inner">
<span>Personal Achievements</span>
<span>Personal Achievements</span>
<span>Personal Achievements</span>
<span>Personal Achievements</span
><span>Personal Achievements</span>
<span>Personal Achievementse</span>
<span>Personal Achievements</span>
<span>Personal Achievements</span>
</div>
</div>
</button>
</div>
</div>
</div>
</section>
<section id="awards" class="section-title--awards app">
<div class="main-wrapper">
<div class="text">
<svg
width="1056"
height="1056"
xmlns="http://www.w3.org/2000/svg"
>
<circle
stroke="#F8EEE4"
cx="528"
cy="528"
r="527.5"
fill="none"
fill-rule="evenodd"
opacity=".458"
/>
</svg>
<h3 class="heading--uppercase--inline">
<span class="split"><span class="line">We developed</span></span
><span class="split"
><span class="line">Enterpise & SASS</span></span
><span class="split"
><span class="line">solutions</span>
<div class="symbol--right">
& Both for private and public organisations
</div></span