-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4061 lines (3876 loc) · 299 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Pooria Parhizkar | Software Developer</title>
<meta name="robots" content="noindex, follow" />
<meta name="keywords" content="HTML, CSS, JavaScript, React.JS, Frontend Developer">
<meta name="author" content="Pooria Parhizkar">
<meta name="description"
content="Pooria Parhizkar | Software Developer and Technical Leader using Agile Methodologies, with Expertise in Frontend Development and Over 4 Yers of Work Experience.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="og:title" content="Pooria Parhizkar | Software Developer">
<meta property="og:image"
content="https://raw.githubusercontent.com/pouorix/pouorix.github.io/master/assets/images/slider/cover_with_bg.jpg">
<meta property="og:description"
content="Pooria Parhizkar | Software Developer and Technical Leader using Agile Methodologies, with Expertise in Frontend Development and Over 4 Yers of Work Experience.">
<meta property="og:url" content="https://pooriaparhizkar.github.io">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Pooria Parhizkar | Software Developer">
<meta name="twitter:description"
content="Pooria Parhizkar | Software Developer and Technical Leader using Agile Methodologies, with Expertise in Frontend Development and Over 4 Yers of Work Experience.">
<meta name="twitter:image"
content="https://raw.githubusercontent.com/pouorix/pouorix.github.io/master/assets/images/slider/cover_with_bg.jpg">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.ico">
<!-- CSS
============================================ -->
<link rel="stylesheet" href="assets/css/vendor/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/vendor/slick.css">
<link rel="stylesheet" href="assets/css/vendor/slick-theme.css">
<link rel="stylesheet" href="assets/css/vendor/aos.css">
<link rel="stylesheet" href="assets/css/plugins/feature.css">
<link rel="stylesheet" href="assets/css/vendor/iv-viewer.css">
<link rel="stylesheet" href="assets/css/vendor/swiper-bundle.min.css" />
<!-- Style css -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="template-color-1 spybody" data-spy="scroll" data-bs-target=".navbar-example2" data-offset="150">
<!-- header - developer home -->
<!-- Start Header -->
<header class="rn-header haeder-default black-logo-version header--fixed header--sticky">
<div class="header-wrapper rn-popup-mobile-menu m--0 row align-items-center">
<!-- Start Header Left -->
<div class="col-lg-2 col-6">
<div class="header-left">
<div class="logo">
<a>
<img src="assets/images/logo/icon2.png" alt="logo">
<h1 style="min-width:140px;color:darkgray;font-size: 16px;margin:0 0 0 8px;">Pooria
Parhizkar</h1>
</a>
</div>
</div>
</div>
<!-- End Header Left -->
<!-- Start Header Center -->
<div class="col-lg-10 col-6">
<div class="header-center">
<nav id="sideNav" class="mainmenu-nav navbar-example2 d-none d-xl-block onepagenav">
<!-- Start Mainmanu Nav -->
<ul class="primary-menu nav nav-pills">
<li class="nav-item current"><a class="nav-link smoth-animation active"
href="index.html#home">Home</a></li>
<li class="nav-item"><a class="nav-link smoth-animation"
href="index.html#experiences">Experience</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="index.html#resume">Resume</a>
</li>
<li class="nav-item"><a class="nav-link smoth-animation"
href="index.html#portfolio">Portfolio</a></li>
</ul>
<!-- End Mainmanu Nav -->
</nav>
<!-- Start Header Right -->
<div class="header-right">
<div class="hamberger-menu d-block d-xl-none">
<i id="menuBtn" class="feather-menu humberger-menu"></i>
</div>
<div class="close-menu d-block">
<span class="closeTrigger">
<i data-feather="x"></i>
</span>
</div>
</div>
<!-- End Header Right -->
</div>
</div>
<!-- End Header Center -->
</div>
</header>
<!-- End Header Area -->
<!-- Start Popup Mobile Menu -->
<div class="popup-mobile-menu">
<div class="inner">
<div class="menu-top">
<div class="menu-header">
<a class="logo" href="index.html">
<img src="assets/images/logo/icon2.png" alt="Personal Portfolio">
<h1 style="color:darkgray;font-size: 16px;margin:0 0 0 8px;">Pooria Parhizkar</h1>
</a>
<div class="close-button">
<button class="close-menu-activation close"><i data-feather="x"></i></button>
</div>
</div>
<p class="discription">Software Developer and Technical Leader using Agile Methodologies, with Expertise
in Frontend Development and Over 4
Years of Work Experience.
</p>
</div>
<div class="content">
<ul class="primary-menu nav nav-pills onepagenav">
<li class="nav-item current"><a class="nav-link smoth-animation" href="index.html#home">Home</a>
</li>
<li class="nav-item"><a class="nav-link smoth-animation"
href="index.html#experiences">Experience</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="index.html#resume">Resume</a></li>
<li class="nav-item"><a class="nav-link smoth-animation" href="index.html#portfolio">Portfolio</a>
</li>
</ul>
<!-- social sharea area -->
<div class="social-share-style-1 mt--40">
<span class="title">find with me</span>
<ul class="social-share d-flex liststyle">
<li class="instagram"><a target="_blank" href="https://www.instagram.com/pooriaparhizkar/"><svg
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-instagram">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
</svg></a>
</li>
<li class="linkedin"><a target="_blank" href="https://www.linkedin.com/in/pooriaparhizkar/"><svg
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-linkedin">
<path
d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z">
</path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg></a>
</li>
<li class="github"><a target="_blank" href="https://www.github.com/pooriaparhizkar"><svg
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-activity"><svg
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-github">
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22">
</path>
</svg></svg></a>
</li>
</ul>
</div>
<!-- end -->
</div>
</div>
</div>
<!-- End Popup Mobile Menu -->
<main class="main-page-wrapper">
<!-- Start Slider Area -->
<div id="home" class="rn-slide-area">
<div class="slide slider-style-3">
<div class="container">
<div class="row slider-wrapper">
<div class="order-2 order-xl-1 col-lg-12 col-xl-6 mt_lg--50 mt_md--50 mt_sm--50">
<div class="slider-info">
<div class="row">
<div class="col-xl-12 col-lg-12 col-12">
<div class="user-info-top">
<div class="user-info-header">
<!-- <div class="user">
<i data-feather="user"></i>
</div> -->
<h2 class="title">
Hi, I’m <span>Pooria Parhizkar</span>
</h2>
<p>Are you in search of a software developer and technical leader with
extensive experience in frontend development and expertise in Agile
methodologies?</p>
<p class="disc">With over 4 years of hands-on experience and a passion
for learning, I’m prepared to collaborate with your team to deliver
high-quality solutions tailored to your specific needs </p>
<p>I take pride in serving our valued customers and are ready to meet
your requirements with precision.”.</p>
</div>
<div class="user-info-footer">
<div class="info">
<i data-feather="file"></i>
<span>Frontend Developer</span>
</div>
<div class="info">
<i data-feather="map-pin"></i>
<span>Tehran-Iran</span>
</div>
<a class="info">
<i data-feather="calendar"></i>
<span>30 June 2000</span>
</a>
<a href="tel:+989213965567" class="info">
<i data-feather="phone"></i>
<span>+98-921-3965567</span>
</a>
<a href="mailto:[email protected]" class="info">
<i data-feather="mail"></i>
<span>[email protected]</span>
</a>
<a target="_blank" href="https://www.linkedin.com/in/pooriaparhizkar/"
class="info">
<i data-feather="linkedin"></i>
<span>Linkedin.com/in/pooriaparhizkar/</span>
</a>
<a target="_blank" href="https://github.com/pooriaparhizkar"
class="info">
<i data-feather="github"></i>
<span>Github.com/pooriaparhizkar/</span>
</a>
</div>
</div>
</div>
<!-- <div class="col-xl-12 col-lg-12 col-12">
<div class="user-info-bottom">
<span>Download my curriculum vitae: </span>
<div class="button-wrapper d-flex">
<a class="rn-btn mr--30" href="index.html#contacts"><span>DOWNLOAD CV</span></a>
</div>
</div>
</div> -->
</div>
</div>
</div>
<div class="order-1 order-xl-2 col-lg-12 col-xl-6">
<div class="background-image-area">
<div class="thumbnail-image">
<img src="assets/images/slider/cover_with_bg.jpg" alt="Personal Portfolio">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Slider Area -->
<!-- Start Resume -->
<div class="rn-resume-area rn-section-gap section-separator" id="resume">
<div class="container">
<div style="padding-bottom:32px;" class="row">
<div class="col-lg-12">
<div class="section-title text-center">
<span class="subtitle">4+ Years of Experience</span>
<h2 class="title">My Resume</h2>
<div style="width: 100%; display:flex; align-items:center;justify-content:center;margin-top:32px"
class="user-info-bottom">
<div class="button-wrapper d-flex">
<a style="margin:auto" class="rn-btn mr--30" target="_blank"
href="assets/Pooria Parhizkar - Resume.pdf"><span>DOWNLOAD</span></a>
</div>
</div>
<div style="display: flex;flex-direction:column;margin-top: 32px;padding: 0 16px;">
<label style="margin-bottom: 16px;" for="resume-picture-mine">Double-click or Scroll to
Zoom</label>
<img style="max-width: 512px;cursor: pointer;" id="resume-picture-mine"
src="assets/images/Resume.jpeg" alt="Pooria Parhizkar - Resume">
</div>
</div>
</div>
</div>
<!-- Start Portfolio Area -->
<div id="portfolio" class="rn-portfolio-area portfolio-style-three rn-section-gap section-separator">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title text-center">
<span class="subtitle">Visit my portfolio and keep your feedback</span>
<h2 class="title">My Portfolio</h2>
</div>
</div>
</div>
<div class="row mt--25 mt_md--5 mt_sm--5">
<div class="col-lg-12">
<div class="portfolio-grid">
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="commerceOSSkeleton">
<div id="commerceOSModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#commerceOSModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/Payever/Dashboard-transparent.png"
alt="Personal Portfolio Images">
<div id="commerceOSSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Payever GmbH</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">CommerceOS<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="payeverMessageSkeleton">
<div id="payeverMessageModalThumbnail" class="rn-portfolio"
data-bs-toggle="modal" data-bs-target="#payeverMessageModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/payeverMessage/livechat-background-channels.jpg"
alt="Personal Portfolio Images">
<div id="payeverMessageSkeleton"
style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Payever GMBH</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Payever Message<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="threatIntSkeleton">
<div id="threatIntModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#threatIntModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/threatInt/Desktop/Landing.png"
alt="Personal Portfolio Images">
<div id="threatIntSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">IUST</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">ThreatInt<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="hawdamSkeleton">
<div id="hawdamModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#hawdamModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/Hawdam/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="hawdamSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Arkamond</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Hawdam<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="xperimentoSkeleton">
<div id="xperimentoModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#xperimentoModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/Xperimento/Dashboard.png"
alt="Personal Portfolio Images">
<div id="xperimentoSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Arkamond</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Xperimento<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="finddelSkeleton">
<div id="finddelModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#finddelModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/Finddel/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="finddelSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Arkamond</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Finddel<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="ucheckSkeleton">
<div id="ucheckModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#ucheckModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/uCheck/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="ucheckSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Arkamond</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Ucheck<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="vekalappSkeleton">
<div id="vekalappModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#vekalappModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/Vekalapp/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="vekalappSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Arkamond</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Vekalapp<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="temxSkeleton">
<div id="temxModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#temxModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/temx/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="temxSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Viraltech.co</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">TemX<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="pmxSkeleton">
<div id="pmxModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#pmxModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/Pmx/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="pmxSkeleton" style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Viraltech.co</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">PmxChange<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<!-- Start Single Portfolio -->
<div onclick="refreshScreenshots()" class="rn-portfolio-slick"
data-skeleton="matchMasterSkeleton">
<div id="matchmasterModalThumbnail" class="rn-portfolio" data-bs-toggle="modal"
data-bs-target="#matchmasterModal">
<div class="inner">
<div class="thumbnail">
<a href="javascript:void(0)">
<img style="display: none;"
data-src="assets/screenshots/MatchMaster/Thumbnail.png"
alt="Personal Portfolio Images">
<div id="matchMasterSkeleton"
style="width: 100%; height: 200px;"
class="portfolio-skeleton-thumbanil pouorix-skeleton"></div>
</a>
</div>
<div class="content">
<div class="category-info">
<div class="category-list">
<a href="javascript:void(0)">Medrick_FZE</a>
</div>
</div>
<h4 class="title"><a href="javascript:void(0)">Match Master<i
class="feather-arrow-up-right"></i></a></h4>
</div>
</div>
</div>
</div>
<!-- End Single Portfolio -->
<div class="grid-gaurd"></div>
<div class="grid-gaurd"></div>
</div>
</div>
</div>
</div>
</div>
<!-- End portfolio Area -->
<div id="experiences" style="padding-top:64px" class="row mt--45 section-separator">
<div class="col-lg-12">
<ul class="rn-nav-list nav nav-tabs" id="myTabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="experience-tab" data-bs-toggle="tab"
href="index.html#experience" role="tab" aria-controls="experience"
aria-selected="true">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" id="professional-tab" data-bs-toggle="tab"
href="index.html#professional" role="tab" aria-controls="professional"
aria-selected="false">professional
Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" id="education-tab" data-bs-toggle="tab" href="index.html#education"
role="tab" aria-controls="education" aria-selected="false">Education</a>
</li>
</ul>
<!-- Start Tab Content Wrapper -->
<div class="rn-nav-content tab-content" id="myTabContents">
<!-- Start Single Tab -->
<div class="tab-pane show active fade single-tab-area" id="experience" role="tabpanel"
aria-labelledby="experience-tab">
<div class="personal-experience-inner mt--40">
<div class="row">
<!-- Start Skill List Area 2nd -->
<div class="col-lg-12 col-md-12 col-12 mt_md--60 mt_sm--60">
<div class="content">
<span class="subtitle">May 2020 - Present</span>
<h4 class="maintitle">Job Experience</h4>
<div class="experience-list">
<!-- Start Single List -->
<div class="resume-single-list">
<div class="inner">
<div class="heading">
<div class="title">
<h4>Payever GmbH (Remote)</h4>
<span>Frontend Developer (Mar 2023 - Mar 2024)</span>
<span>Hamburg - Germany</span>
</div>
<div class="date-of-time">
<img style="width:64px;height:64px;border-radius:20px;"
src="assets/images/logo/payever_logo.jpeg"
alt="Payever Logo" />
</div>
</div>
<p class="description">
• Link to the live version: <a target="_blank"
href="https://getpayever.com/">
https://getpayever.com/ </a>
</br>
• Contributed to <a target="_blank"
href="https://dmexco.com/"> DMEXCO - Digital
Marketing Expo & Conference </a> on 20th Sep 2023
</br>
• Spearheaded the development of an app system, which
empowered Third-party developers to build over 50
diverse and innovative apps within the platform.
</br>
• Implemented a multi-theme feature across the entire
project, resulting in an impressive 25% increase in user
engagement and average time spent on the platform.
</br>
• Personalized the application’s appearance and
optimized its speed by maintaining and improving the
complete UI pack, leading to an outstanding 20% increase
in user feedback.
</br>
• Pioneered the design and successful integration of an
Omni-channel communication platform, encompassing
WhatsApp, Facebook Messenger, Instagram Messenger, and
Telegram, which contributed to a notable 15% growth in
total platform members.
</br>
• Streamlined the Builder app, enabling normal users to
create full-fledged websites with logic, eliminating the
need for code, and accelerating website creation by 40%.
</br>
• Lead the development of an innovative messaging
application, seamlessly integrating a live-chat module
into external websites. Achieved a
substantial 32% acceleration in collaboration efficiency
and streamlined website creation through a direct link
sharing feature.
</br>
• Technology Stack: HTML, SCSS, JavaScript, Typescript,
Angular, NestJS, GraphQL, RabbitMQ, MongoDB,
Microservices
</p>
</div>
</div>
<!-- End Single List -->
<!-- Start Single List -->
<div class="resume-single-list">
<div class="inner">
<div class="heading">
<div class="title">
<h4>Arkamond (Hybrid)</h4>
<span>Frontend Developer (Apr 2020 - Aug
2023)</span>
<span>Tehran - Iran</span>
</div>
<div class="date-of-time">
<img style="width:64px;height:64px;border-radius:20px;"
src="assets/images/logo/Arkamond.jpeg"
alt="Arkamond Logo" />
</div>
</div>
<p class="description">
• Collaborated with design, product, and back-end teams
to create 10+ international fully responsive super
web-application products with different panels, about
500+ pages with UI/UX designs.
</br>
• Built modular-based components and utilities and 100%
reusable code for future usage.
</br>
• Used OAuth protocol and Microservice Architecture for
multi-panel projects and implemented the management
panels using
React.JS. Used SCSS, jQuery, and Server-Side Rendering
(SSR) Tools like Django template or Next.JS for other
panels
which need better SEO, that makes driving acquisition up
by an average of 250% each month
</br>
• Developed Mobile and Desktop Applications with the
same code as web applications due to Responsiveness,
Cross-Browser
Compatibility, and Accessibility-Compliant websites that
improved the number of total members by 40%.
</br>
• Created a Solar Hijri (Iranian) Calendar with
High-Tech Features similar to Google Calendar in tandem
with a Great
Music Platform
like Spotify for Kurdish People, which Led to an
Increase in Client’s Average Time Using the Application
by 32%.
</br>
• Proficient in Scrum Methodology. Participated in
Product Release Presentations and Code Reviews with 3
Senior
Developers. Had
the Leadership, Supervision, and Mentoring of a Team
with 5 Juniors to Achieve High-Performance.
</br>
• Test the products before releasing them to the market
and get the +95% coverage with the Jest framework.
</br>
• Delivered Engaging User Experience by Optimizing
images and code. Created Custom Webpack.JS, achieving
24% faster load
time than the industry average.
</br>
• Technology Stack: HTML5, SCSS, JQuery, Bootstrap4,
Material UI, TypeScript, React.JS, React Native,
Electron JS, Django
Template, Django, Docker, PostgreSQL, MongoDB, NginX,
WebSocket, Git, Trello, Figma, Zeplin
</p>
</div>
</div>
<!-- End Single List -->
<!-- Start Single List -->
<div class="resume-single-list">
<div class="inner">
<div class="heading">
<div class="title">
<h4>Medrick FZE (On-Site)</h4>
<span>Unity Developer - Internship (Sep 2022 - Dec 2022)</span>
<span>Tehran - Iran</span>
</div>
<div class="date-of-time">
<img style="width:64px;height:64px;border-radius:20px;"
src="assets/images/logo/MedrickLogo.jpeg"
alt="Medrick Logo" />
</div>
</div>
<p class="description">
• Developed an online (PVP) match three mobile game
project where players compete against each other using
web-socket and reach +100 download on Playstore.
<br />
• Collaborated with +10 Senior Unity Developer and +20
Co-worker includes back-end developers, designers,
artists and scrum master.
<br />
• Technology Stack : C#, Unity, Nakama, TypeScript,
Docker, Adobe Photoshop
</p>
</div>
</div>
<!-- End Single List -->
<!-- Start Single List -->
<div class="resume-single-list">
<div class="inner">
<div class="heading">
<div class="title">
<h4>ViralTech.co (On-Site)</h4>
<span>Frontend development lead (Sep 2020 - Dec
2022)</span>
<span>Tehran - Iran</span>
</div>
<div class="date-of-time">
<img style="width:64px;height:64px;border-radius:20px;"
src="assets/images/logo/viraltech.jpeg"
alt="Viraltech Logo" />
</div>
</div>
<p class="description">
• Developed the mobile-friendly project about
Cryptocurrencies including the admin panel, User Panel,
and a SPA
compatible with
100% device sizes.
<br />
• Recreated a custom client dashboard that reduced
support tickets by 50%.
<br />
• Implemented the system with Full Compatibility with a
High-Security backend for payment and connecting to the
client’s
wallet
page, decreasing the security concerns to 0.
<br />
• Led and mentored 3 members and apply Material-UI,
antd, and bootstrap4, to increase the speed of
development by about
45%.
<br />
• Technology Stack: JSX, SCSS, Bootstrap4, Material UI,
Antd, React.JS, ASP .Net Core, C#, MySQL, SQL Server,
Azure
DevOps, NginX, Git, Figma
</p>
</div>
</div>
<!-- End Single List -->
</div>
</div>
</div>
<!-- End Skill List Area -->
</div>
</div>
</div>
<!-- End Single Tab -->
<!-- Start Single Tab -->
<div class="tab-pane fade " id="professional" role="tabpanel"
aria-labelledby="professional-tab">
<div class="personal-experience-inner mt--40">
<div class="row row--40">
<!-- Start Single Progressbar -->
<div class="col-lg-6 col-md-6 col-12 mt_sm--60">
<div class="progress-wrapper">
<div class="content">
<span class="subtitle">Features</span>
<h4 class="maintitle">Development Skill</h4>
<!-- Start Single Progress Charts -->
<div class="progress-charts">
<h6 class="heading heading-h6">HTML <img style="height:30px"
src="assets/images/Linkedin_Badge_2.png"
alt="linkedin_badge" /></h6>
<div class="progress">
<div class="progress-bar wow fadeInLeft"
data-wow-duration="0.5s" data-wow-delay=".3s"
role="progressbar" style="width: 95%" aria-valuenow="95"
aria-valuemin="0" aria-valuemax="100">
<span class="percent-label">95%</span>
</div>
</div>
</div>
<!-- End Single Progress Charts -->
<!-- Start Single Progress Charts -->
<div class="progress-charts">
<h6 class="heading heading-h6">CSS <img style="height:30px"
src="assets/images/Linkedin_Badge_2.png"
alt="linkedin_badge" /></h6>
<div class="progress">
<div class="progress-bar wow fadeInLeft"
data-wow-duration="0.5s" data-wow-delay=".3s"
role="progressbar" style="width: 95%" aria-valuenow="95"
aria-valuemin="0" aria-valuemax="100">
<span class="percent-label">95%</span>
</div>
</div>
</div>
<!-- End Single Progress Charts -->
<!-- Start Single Progress Charts -->
<div class="progress-charts">
<h6 class="heading heading-h6">javascript <img
style="height:30px"
src="assets/images/Linkedin_Badge_2.png"
alt="linkedin_badge" /></h6>
<div class="progress">
<div class="progress-bar wow fadeInLeft"
data-wow-duration="0.5s" data-wow-delay=".3s"
role="progressbar" style="width: 95%" aria-valuenow="95"
aria-valuemin="0" aria-valuemax="100">
<span class="percent-label">95%</span>
</div>
</div>
</div>
<!-- End Single Progress Charts -->
<!-- Start Single Progress Charts -->
<div class="progress-charts">
<h6 class="heading heading-h6">TypeScript</h6>
<div class="progress">
<div class="progress-bar wow fadeInLeft"
data-wow-duration="0.5s" data-wow-delay=".3s"
role="progressbar" style="width: 95%" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100">
<span class="percent-label">95%</span>
</div>
</div>
</div>
<!-- End Single Progress Charts -->
<!-- Start Single Progress Charts -->
<div class="progress-charts">
<h6 class="heading heading-h6">React.JS <img style="height:30px"
src="assets/images/Linkedin_Badge_2.png"
alt="linkedin_badge" /></h6>
<div class="progress">
<div class="progress-bar wow fadeInLeft"
data-wow-duration="0.5s" data-wow-delay=".3s"
role="progressbar" style="width: 90%" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
<span class="percent-label">90%</span>
</div>
</div>
</div>
<!-- End Single Progress Charts -->
<!-- Start Single Progress Charts -->
<div class="progress-charts">
<h6 class="heading heading-h6">Next.JS </h6>
<div class="progress">
<div class="progress-bar wow fadeInLeft"
data-wow-duration="0.5s" data-wow-delay=".3s"