-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1191 lines (1099 loc) · 50.9 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 lang="en">
<head>
<meta charset="UTF-8" />
<link rel="dns-prefetch" href="//roman.matviy.pp.ua">
<meta name="generator" content="WordPress 6.4.2">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="content-language" content="en">
<meta name="robots" content="all">
<title>Roman M. - FullStack Developer Laravel Prestashop WordPress PHP VUE SQL</title><!-- max 70 -->
<meta name="description"
content="Roman Matviy - Hire FullStack Developer Laravel, Prestashop, Wordpress themes and plugins. Skills: PHP, SQL, VUE, MySQL, HTML, CSS, JS, jQuery, Ajax, Bootstrap, Flexbox, Git, JSON, Figma, Avocode, Multi site, Carbon Fields, ACF, Blade, Twig, Smarty"><!-- max 160 -->
<!-- <meta name="description" content="Roman Matviy FullStack Developer. Creation and comprehensive promotion of Lviv and Ukraine sites. Starting an online business, developing a website, a turnkey online store.Створення та комплексне просуванням сайтів Львів та Україна. Запуск бізнесу онлайн, розробка сайту, інтернет магазину під ключ."> -->
<meta name="keywords"
content="Roman, Matviy, Matvii, Full-stack, fullstack laravel, Full-stack php, Full-stack developer, Fullstack, Fullstack php, Fullstack developer, prestashop freelancer, freelance, prestashop SEO, swagger, prestashop page speed optimize, prestashop fix error 500, backend, frontent, backend engineer frontent engineer, PHP, SQL, MySQL, HTML, CSS, SCSS, SASS, JS, jQuery, API, Ajax, Bootstrap, Flexbox, Git, Github, Gitlab, BEM, JSON, Figma, Avocode, Photoshop, SSH, SFTP, FTP, Command line, WordPress/Multi site, Prestashop/Multi site, Elementor, Carbon Fields, ACF, UI/UX, Twig, Smarty, Webpack, Laravel.Mix, Gulp, Trello, Asana, vue.js, vue3.js, Розробка сайтів, створення сайтів Львів, SEO, просування сайтів, розкрутка сайтів, веб-дизайн, інтернет-реклама, сайт-візитка, інтернет-магазин, корпоративний сайт, Site development, site creation Lviv, SEO, site promotion, site promotion, web design, internet advertising, business card site, online store, corporate site, php5, php7, php8, PageSpeed">
<meta name="copyright" content="Roman Matviy FullStack Developer Laravel Prestashop, Wordpress, PHP, SQL, VUE)">
<link rel="canonical" href="https://roman.matviy.pp.ua" id="canonicalLink" />
<!--<link rel="stylesheet" href="assets/dist/style.css?ver=4">-->
<link rel="stylesheet" href="assets/dist/style.min.css?ver=4">
<!--<link rel="preload" href="assets/icons/fonts/icons.ttf" as="font">-->
<link rel="preload" href="assets/icons/style.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="assets/icons/style.min.css">
</noscript>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://roman.matviy.pp.ua/assets/img/photo.jpg">
<meta name="twitter:site" content="Roman Matviy FullStack Developer Laravel Prestashop, Wordpress, PHP, SQL, VUE)" />
<meta name="twitter:title" content="Roman Matviy - Hire FullStack Developer Laravel, Prestashop, WordPress, PHP, SQL, VUE">
<meta name="twitter:description" content="Roman Matviy - Hire FullStack Developer Laravel, Prestashop, Wordpress themes and plugins. Skills: PHP, SQL, VUE, MySQL, HTML, CSS, JS, jQuery, Ajax, Bootstrap, Flexbox, Git, JSON, Figma, Avocode, Multi site, Carbon Fields, ACF, Blade, Twig, Smarty">
<meta property="og:type" content="website">
<meta property="og:title" content="Roman Matviy - Hire FullStack Developer Laravel, Prestashop, WordPress, PHP, SQL, VUE">
<meta property="og:description" content="Roman Matviy - Hire FullStack Developer Laravel, Prestashop, WordPress, PHP, SQL, VUE">
<meta property="og:url" content="https://roman.matviy.pp.ua/">
<meta property="og:image" content="https://roman.matviy.pp.ua/assets/img/photo.jpg">
</head>
<body>
<header class="header">
<div class="wrapper">
<div class="text-wrapper">
<a class="link" href="https://roman.matviy.pp.ua">
<h2 class="full-name">Roman Matviy</h2>
<h1 class="title" id="pageTitle">FullStack Developer (Laravel, Prestashop, Wordpress, PHP, SQL, VUE)</h1>
</a>
<!--<h2 class="text">
Currently, my commercial experience spans <span id="all_time"></span>. I work
with the Laravel framework and the longer I work with it, the more I like it. I also work with the
WhiteLion PHP framework, which bears striking similarities to Laravel, Symfony. Additionally, I
am well-versed in <a href="#skills" class="goToBlock">the
technologies</a> listed
in my <a href="#skills" class="goToBlock">skills</a>
block. I possess a strong
drive for learning
and growth and seek to join a talented team for mutual personal development.
</h2>-->
<h2 class="text">
With <span id="all_time"></span> of commercial experience, I am a dedicated Laravel Backend, Frontend, Fullstack Developer focused on creating efficient and scalable web solutions. My expertise lies in Laravel, PHP, Docker, API development, Postman, Composer, SQL, MySQL, Swagger, and Git. I excel in architecting and maintaining server-side functionalities to ensure the development of robust and high-performing applications. My <a href="#skills" class="goToBlock">skills</a> encompass a wide range of <a href="#skills" class="goToBlock">the technologies</a>, and I am driven by a strong passion for continuous learning and growth. I am eager to contribute my skills and join a talented team to foster mutual personal development.
<br>
<br>
I would be delighted to collaborate on projects involving Laravel, PrestaShop, OpenCart, WordPress, WooCommerce, Thirty Bees, PHP, Vue.js, and more. Feel free to reach out to me <a href="https://t.me/RomanMatviy" target="_blank" rel="nofollow noreferrer noopener" title="Hire FullStack Developer Prestashop, Laravel, WordPress, WooCommerce, Thirty Bees, PHP, SQL, VUE" style="text-decoration: underline;">Hire a Fullstack Developer</a>, and let's discuss how we can work together to bring your ideas to life. I'm eager for the opportunity to contribute my skills and expertise to your projects!
</h2>
</div>
<a href="https://t.me/RomanMatviy" target="_blank" rel="nofollow noreferrer noopener" class="logo"
title="I am Roman Matviy FullStack Developer (Laravel, Prestashop, WordPress, PHP, SQL, VUE)">
<img src="assets/img/photo.jpg" width="200" height="200"
alt="Roman Matviy FullStack Developer (Laravel, Prestashop, WordPress, PHP, SQL, VUE)" />
<span>Hire expert freelancer laravel, prestashop, wordpress developer</span>
</a>
</div>
</header>
<section class="contact">
<div class="wrapper">
<h2 class="title">CONTACTS</h2>
<ul class="left">
<li class="icon ion-ios-email-outline">
<a href="mailto:roman@matviy.pp.ua">roman@matviy.pp.ua</a>
</li>
<li class="icon ion-ios-telephone-outline phoneHide" style="display: none" id="phoneHide">
<a href="tel:+380938800822">+380 93 88 00 822</a>
</li>
<li class="icon ion-ios-telephone-outline phoneShow" style="display: block" id="phoneShow">
<a href="tel:+380XXXXXXXXX" title="click to view phone" onclick="return false">+380 XX XX XX XXX</a>
</li>
<li class="icon ion-ios-location-outline">
<a href="https://www.google.com/maps/place/%D0%9B%D1%8C%D0%B2%D1%96%D0%B2,+%D0%9B%D1%8C%D0%B2%D1%96%D0%B2%D1%81%D1%8C%D0%BA%D0%B0+%D0%BE%D0%B1%D0%BB%D0%B0%D1%81%D1%82%D1%8C,+79000/@49.8367536,24.0044266,11z/data=!4m5!3m4!1s0x473add7c09109a57:0x4223c517012378e2!8m2!3d49.839683!4d24.029717"
target="_blank" rel="nofollow noreferrer noopener">
Lviv, Ukraine
</a>
</li>
<li class="icon ion-earth">
<a href="https://matviy.pp.ua" target="_blank" rel="dofollow noreferrer">Developer portfolio</a>
</li>
<li class="icon ion-information">
<a href="https://freelancehunt.com/freelancer/romas6ka.html#reviews" target="_blank" rel="nofollow noreferrer noopener">
Feedback about me
</a>
</li>
</ul>
<ul class="right">
<li class="icon ion-social-linkedin-outline">
<a href="https://linkedin.com/in/MatviyRoman" target="_blank" rel="nofollow vnoopener">Linkedin</a>
</li>
<li class="icon ion-social-facebook-outline">
<a href="https://fb.com/romas6ka" target="_blank" rel="nofollow noreferrer noopener">Facebook</a>
</li>
<li class="icon ion-social-skype-outline">
<a href="skype:romas6ka">Skype</a>
</li>
<li class="icon ion-social-github">
<a href="https://github.com/MatviyRoman" target="_blank" rel="nofollow noreferrer noopener">Github</a>
</li>
<li class="icon ion-chatbubble">
<ion-icon name="chatbox-ellipses-outline"></ion-icon>
<a href="https://t.me/RomanMatviy" target="_blank" rel="nofollow noreferrer noopener">Telegram</a>
</li>
</ul>
</div>
</section>
<section class="content">
<div class="wrapper">
<div class="block languages">
<h2 class="title">LANGUAGES</h2>
<ul>
<li>
<span>Ukraine</span>
<ul class="circle">
<li class="active"></li>
<li class="active"></li>
<li class="active"></li>
<li class="active"></li>
<li class="active"></li>
</ul>
<p>(Native)</p>
</li>
<li>
<span>English</span>
<ul class="circle">
<li class="active"></li>
<li class="active"></li>
<li></li>
<li></li>
<li></li>
</ul>
<p>(Pre-intermediate)</p>
</li>
<li>
<span>Polish</span>
<ul class="circle">
<li class="active"></li>
<li class="active"></li>
<li></li>
<li></li>
<li></li>
</ul>
<p>(Beginner)</p>
</li>
</ul>
</div>
<div class="block skills" id="skills">
<h2 class="title">Skills</h2>
<ul>
<li><a href="https://roman.matviy.pp.ua/?s=Wordpress-ACF-Backend-Frontend-Developer" title="Wordpress ACF Backend Frontend Fullstack Developer">ACF</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=API-Backend-Developer" title="API" class="active">API</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Ajax-Frontend-Backend-Developer" title="Ajax" class="active">Ajax</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Avocode-Frontend-Developer" title="Avocode Frontend Developer">Avocode</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Axios-Frontend-Backend-Developer" title="Axios" class="active">Axios</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Bem-Frontend-Developer" title="BEM">BEM</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Bootstrap-Frontend-Developer" title="Bootstrap">Bootstrap</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=CakePHP-Backend-Developer" title="CakePHP Backend Developer">CakePHP</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Composer-Backend-Developer" title="Composer" class="active">Composer</a></li>
<li><a href="https://roman.matviy.pp.ua#cpt" title="CPT">CPT</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Carbon-fields-Wordpress-Backend-Developer" title="Carbon Fields Wordpress Backend Developer">Carbon Fields</a></li>
<li><a href="https://roman.matviy.pp.ua?s=CodeIgniter-Backend-Developer" title="CodeIgniter Backend Developer">CodeIgniter</a></li>
<li><a href="https://roman.matviy.pp.ua?s=CLI" title="CLI (Command Line Interface)">CLI</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=DDD-Domain-Driven-Design-Laravel-Backend-Developer" title="DDD Domain Driven Design Laravel Backend Developer" class="active">DDD</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Docker-Laravel-Backend-Developer" title="Docker Laravel Backend Developer" class="active">Docker</a></li>
<li><a href="https://roman.matviy.pp.ua#dto" title="DTO">DTO</a></li>
<li><a href="https://roman.matviy.pp.ua#elementor" title="Wordpress Elementor">Elementor</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Filament-PHP-Laravel-DEV" title="Filament PHP Laravel DEV">Filament</a></li>
<li><a href="https://roman.matviy.pp.ua#ftp_sftp" title="FTP/SFTP">FTP/SFTP</a></li>
<li><a href="https://roman.matviy.pp.ua#figma" title="Figma">Figma</a></li>
<li><a href="https://roman.matviy.pp.ua#flexbox" title="Flexbox">Flexbox</a></li>
<li><a href="https://roman.matviy.pp.ua#GSAP" title="GSAP">GSAP</a></li>
<li><a href="https://roman.matviy.pp.ua#git_github_gitlab" title="Git/Github/Gitlab" class="active">Git/Github/Gitlab</a></li>
<li><a href="https://roman.matviy.pp.ua#gulp" title="Gulp">Gulp</a></li>
<!-- <li><a href="https://roman.matviy.pp.ua#gpt" title="GPT" class="active">GPT</a></li> -->
<li><a href="https://roman.matviy.pp.ua#html_css" title="HTML5/CSS3">HTML5/CSS3</a></li>
<li><a href="https://roman.matviy.pp.ua#js_jquery" title="JS/jQuery">JS/jQuery</a></li>
<li><a href="https://roman.matviy.pp.ua#json" title="JSON" class="active">JSON</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Laravel-Backend-Frontend-Developer" title="Laravel Fullstack (Backend, Frontend) Developer" class="active">Laravel</a></li>
<li><a href="https://roman.matviy.pp.ua#linux" title="Linux">Linux</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Livewire-Backend-Frontend-Developer" title="Livewire Fullstack (Backend, Frontend) Developer">Livewire</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=OOP" title="OOP" class="active">OOP</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=OpenCart-Backend-Frontend-Developer" title="OpenCart">OpenCart</a></li>
<li><a href="https://roman.matviy.pp.ua#photoshop" title="Photoshop">Photoshop</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=PHP-developer" title="PHP Developer" class="active">PHP</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Postman-Backend-Developer" title="Postman backend developer" class="active">Postman</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Prestashop-Backend-Frontend-Developer" title="Prestashop/Multi site" class="active">Prestashop/Multi site</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Rocket-LMS-Laravel-Backend-Developer" title="Rocket LMS Laravel Backend Developer" class="active">Rocket LMS</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=REST-API-Laravel-Backend-Developer" title="REST API Laravel Backend Developer" class="active">REST API</a></li>
<li><a href="https://roman.matviy.pp.ua#scss_sass" title="SCSS/SASS">SCSS/SASS</a></li>
<li><a href="https://roman.matviy.pp.ua#ssh" title="SSH">SSH</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Swagger-Backend-Developer" title="Swagger" class="active">Swagger</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=SQL-MySQL-MariaDB-Backend-Developer" title="SQL/MySQL/MariaDB Backend Developer" class="active">SQL/MySQL/MariaDB</a></li>
<li>
<a href="https://roman.matviy.pp.ua/?s=TailwindCSS-Frontend-Developer" title="TailwindCSS Fullstack (Backend, Frontend) Developer" class="active">TailwindCSS</a>
</li>
<li><a href="https://roman.matviy.pp.ua/?s=Thirty-Bees-backend-Frontend-Developer" title="Thirty Bees">Thirty Bees</a></li>
<li><a href="https://roman.matviy.pp.ua#trello_asana" title="Trello/Asana">Trello/Asana</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=TypeScript-Frontend-Developer" title="TypeScript Frontend Developer">TypeScript</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Twig-Smarty-Blade-Developer" title="Twig/Smarty/Blade Developer" class="active">Twig/Smarty/Blade</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=PUG-Frontend-Developer" title="PUG Frontend Developer">PUG</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Vite-Laravel-Frontend-Backend-Developer" title="Vite Laravel Frontend Backend Developer">Vite</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=VUE-JS-Frontend-Developer" title="VUE JS Frontend Developer" class="active">Vue.js</a></li>
<li><a href="https://roman.matviy.pp.ua#ui_ux" title="UI/UX">UI/UX</a></li>
<li><a href="https://roman.matviy.pp.ua#webpack" title="Webpack/Laravel.Mix">Webpack/Laravel.Mix</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Wordpress-Frontend-Backend-Developer" title="WordPress/Multi site">WordPress/Multi site</a></li>
<li><a href="https://roman.matviy.pp.ua/?s=Yii-Backend-Developer" title="Yii Backend Developer">Yii</a></li>
</ul>
</div>
<div class="block my-work">
<h2 class="title">EXAMPLES OF MY WORKS</h2>
<ul>
<li>
<a href="https://github.com/MatviyRoman/Laravel-Task-Manager" target="_blank" rel="nofollow noreferrer noopener">
<p>Task Manager REST API (Laravel/PHP)</p>
<!--Repository Pattern-->
Task Manager system REST API
</a>
</li>
<li>
<a href="https://github.com/MatviyRoman/Laravel-FillamentPHP" target="_blank" rel="nofollow noreferrer noopener">
<p>Project Management System (Laravel/FilamentPHP/PHP)</p>
Project Management System (CRM, ERP)
</a>
</li>
<li>
<a href="https://github.com/MatviyRoman/openHealth" target="_blank" rel="nofollow noreferrer noopener">
<p>OpenHealth service (Laravel/PHP/Livewire/JS)</p>
OpenHealth service
</a>
</li>
<li>
<a href="https://github.com/MatviyRoman/Calendar-Laravel-PHP-SQL" target="_blank" rel="nofollow noreferrer noopener">
<p>Calendar service (Laravel/PHP/Vite/jQuery/JS)</p>
Calendar event service
</a>
</li>
<li>
<a href="https://github.com/APARTNER-TOP/Leads" target="_blank" rel="nofollow noreferrer noopener">
<p>Leads service (Laravel/PHP/Vite)</p>
Sending car service
</a>
</li>
<li>
<a href="https://github.com/APARTNER-TOP/Agro" target="_blank" rel="nofollow noreferrer noopener">
<p>Agricultural crops sale (Laravel/PHP/Vite)</p>
Site for sale of agricultural crops
</a>
</li>
<li>
<a href="https://github.com/MatviyRoman/Laravel-vue.js" target="_blank" rel="nofollow noreferrer noopener">
<p>Test task (Laravel/Vite/Vue3.js/Bootstrap)</p>
test task
</a>
</li>
<!--<li>
<a href="https://ogo.biz.ua" target="_blank" rel="dofollow noreferrer">
<p>Free Classifieds Site (WP/JS/jQuery)</p>
ogo.biz.ua
</a>
</li>-->
<!-- <li>
<a href="https://roman.apartner.pro" target="_blank" rel="dofollow noreferrer">
<p>Portfolio (Laravel/PHP/SQL)</p>
roman.apartner.pro
</a>
</li> -->
<li>
<a href="https://keytest.pp.ua" target="_blank" rel="dofollow noreferrer">
<p>KeyTest (HTML/SCSS/JS/jQuery)</p>
keytest.pp.ua
</a>
</li>
<li>
<a href="https://invoicemaker.me" target="_blank" rel="dofollow noreferrer">
<p>InvoiceMaker (HTML/SCSS/JS/jQuery)</p>
invoicemaker.me
</a>
</li>
<li>
<a href="https://intownhostel.com.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Intown (WP/JS/jQuery/Twig/ACF)</p>
intownhostel.com.ua
</a>
</li>
<li>
<a href="https://ifhostel.com.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Ifhostel (WP/JS/jQuery/Twig/ACF)</p>
ifhostel.com.ua
</a>
</li>
<!-- <li>
<a href="https://ukrayintsi.co.uk" target="_blank" rel="nofollow noreferrer noopener">
<p>Ukrayintsi (WP/JS/jQuery/ACF/HivePress/Laravel.mix)</p>
ukrayintsi.co.uk
</a>
</li> -->
<!--<li>
<a href="https://wessta.de" target="_blank" rel="nofollow noreferrer noopener">
<p>Wessta (WP/JS/jQuery/ACF/SCSS/Laravel.mix)</p>
Wessta.de
</a>
</li>-->
<li>
<a href="https://novavanna.com.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Restoration of baths (WP/jQuery/ACF/SCSS)</p>
novavanna.com.ua
</a>
</li>
<li>
<a href="https://remont-okuliariv.lviv.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Repair of glasses (WP/JS/jQuery/Twig/ACF/SCSS)</p>
remont-okuliariv.lviv.ua
</a>
</li>
<li>
<a href="https://makerinvoice.com" target="_blank" rel="dofollow noreferrer">
<p>Maker Invoice (HTML/SCSS/JS/jQuery)</p>
makerinvoice.com
</a>
</li>
<!--<li>
<a href="https://allis.art" target="_blank" rel="nofollow noreferrer noopener">
<p>ART Auction (Prestashop/PHP/SQL/OOP/JS/jQuery)</p>
allis.art
</a>
</li>-->
<!-- <li>
<a href="https://eco-wood-lviv.com.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Eco-wood (WP/JS/jQuery/Twig/ACF)</p>
eco-wood-lviv.com.ua
</a>
</li> -->
<!-- <li>
<a href="https://glowcityaudio.com" target="_blank" rel="nofollow noreferrer noopener">
<p>GlowCity (WP/Twig/Carbon Fields)</p>
glowcityaudio.com
</a>
</li> -->
<!-- <li>
<a href="https://ks.lviv.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Furniture edge (WP/TWIG/Carbon fields)</p>
ks.lviv.ua
</a>
</li> -->
<!-- <li>
<a href="https://firanka.log.in.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Firanka (WP/Elementor)</p>
firanka.log.in.ua
</a>
</li> -->
<li>
<a href="https://appetite.kiev.ua" target="_blank" rel="nofollow noreferrer noopener">
<p>Appetite (WP/TWIG/HTML/CSS)</p>
appetite.kiev.ua
</a>
</li>
<li>
<a href="https://matviy.pp.ua" target="_blank" rel="dofollow noreferrer">
<p>My Portfolio (HTML/Bootstrap/vue.js)</p>
matviy.pp.ua
</a>
</li>
<li>
<a href="https://surelockkey.com" target="_blank" rel="nofollow noreferrer noopener">
<p>SureLockKey (WP/HTML/CSS)</p>
surelockkey.com
</a>
</li>
<li>
<a href="https://martaup.matviy.pp.ua" target="_blank" rel="dofollow noreferrer">
<p>MartaUp (HTML/CSS/jQuery/Slick Slider)</p>
martaup.matviy.pp.ua
</a>
</li>
<li>
<a href="https://rogue-chefs.matviy.pp.ua" target="_blank" rel="dofollow noreferrer">
<p>Rogue Chefs (HTML/CSS/JS/Slick Slider)</p>
rogue-chefs.matviy.pp.ua
</a>
</li>
<li>
<a href="https://gentab.matviy.pp.ua" target="_blank" rel="dofollow noreferrer">
<p>HTML Tables Generation (HTML/CSS/jQuery)</p>
gentab.matviy.pp.ua
</a>
</li>
</ul>
</div>
<div class="block certificates">
<h2 class="title">CERTIFICATES</h2>
<ul>
<li>
<a href="/certificate/img/Coding-for-Marketers-course-online-CT-CHVQU1BT.png" target="_blank"
rel="dofollow noreferrer opener">
<p>Coding for Marketers - Yeva Hyusyan Sololearn (10/2021)</p>
License CT-CHVQU1BT
</a>
</li>
<li>
<a href="/certificate/img/Responsive-Web-Design-course-online-CT-KTVPC9VG.png" target="_blank"
rel="dofollow noreferrer opener">
<p>Responsive Web Design - Yeva Hyusyan Sololearn (06/2021)</p>
License CT-KTVPC9VG
</a>
</li>
<li>
<a href="/certificate/img/Learn-elementor-wordpress-front-end-development-course-online-UC-56b1f67d.jpg" target="_blank"
rel="dofollow noreferrer opener">
<p>Learn elementor wordpress front-end development course online - Andrew William Udemy (03/2021)</p>
License UC-56b1f67d
</a>
</li>
<li>
<a href="https://cert.programmingmentor.com/2020-ecb3d4127b27.pdf" target="_blank"
rel="nofollow noreferrer noopener">
<p>ScriptJedi42 - ProgrammingMentor (03/2020)</p>
License 2020-ecb3d4127b27
</a>
</li>
<li>
<a href="https://www.sololearn.com/Certificate/1059-10299461/pdf/" target="_blank"
rel="nofollow noreferrer noopener">
<p>PHP course - Sololearn (03/2020)</p>
License 1059-10299461
</a>
</li>
<li>
<a href="https://www.sololearn.com/Certificate/1060-10299461/pdf/" target="_blank"
rel="nofollow noreferrer noopener">
<p>SQL course - Sololearn (04/2020)</p>
License 1060-10299461
</a>
</li>
<li>
<a href="/certificate/img/Learn-how-to-build-an-e-commerce-web-site-by-prestashop-online-course-UC-QC4ND1WG.jpg" target="_blank"
rel="dofollow noreferrer opener">
<p>Learn how to build an e-commerce web site by prestashop online course - Nader Hantash Udemy (04/2019)</p>
License UC-QC4ND1WG
</a>
</li>
<li>
<a href="/certificate/img/Modules-developer-guide-for-prestashop-online-course-UC-1I45RK12.jpg" target="_blank"
rel="dofollow noreferrer opener">
<p>Modules developer guide for prestashop online course - Aloui Mohamed Habib Udemy (04/2019)</p>
License UC-1I45RK12
</a>
</li>
<li>
<a href="/certificate/img/Themes-developer-guide-for-prestashop-online-course-UC-KP4RCSBJ.jpg" target="_blank"
rel="dofollow noreferrer opener">
<p>Themes developer guide for prestashop online course - Aloui Mohamed Habib Udemy (04/2019)</p>
License UC-KP4RCSBJ
</a>
</li>
<li>
<a href="https://matviy.pp.ua/certificate/PDF/cert-36340060295e40e5b149e02866465b3d.pdf"
target="_blank" rel="dofollow noreferrer opener">
<p>Basics of Web UI development - Prometheus (02/2019)</p>
License 36340060295e40e5b149e02866465b3d
</a>
</li>
<li>
<a href="https://www.sololearn.com/Certificate/1024-10299461/pdf/" target="_blank"
rel="nofollow noreferrer noopener">
<p>JavaScript course - Sololearn (10/2018)</p>
License 1024-10299461
</a>
</li>
<li>
<a href="https://www.sololearn.com/Certificate/1082-10299461/pdf/" target="_blank"
rel="nofollow noreferrer noopener">
<p>jQuery course - Sololearn (10/2018)</p>
License 1082-10299461
</a>
</li>
<li>
<a href="https://www.sololearn.com/Certificate/1014-10299461/pdf/" target="_blank"
rel="nofollow noreferrer noopener">
<p>HTML course - Sololearn (09/2018)</p>
License 1014-10299461
</a>
</li>
<li>
<a href="https://www.sololearn.com/Certificate/1023-10299461/pdf/" target="_blank"
rel="nofollow noreferrer noopener">
<p>CSS course - Sololearn (09/2018)</p>
License 1023-10299461
</a>
</li>
</ul>
</div>
<!--<div class="block own-experience">
<h2 class="title">OWN EXPERIENCE</h2>
<ul>
<li><a href="https://matviy.pp.ua">Yii2,</a></li>
<li><a href="https://matviy.pp.ua">Vue.js,</a></li>
</ul>
</div>-->
<!-- <div class="block study">
<h2 class="title">I want to study</h2>
<ul>
<li><a href="https://matviy.pp.ua">Symphony,</a></li>
<li><a href="https://matviy.pp.ua">Yii2,</a></li>
<li><a href="https://matviy.pp.ua">React,</a></li>
<li><a href="https://matviy.pp.ua">Nuxt.js,</a></li>
<li><a href="https://matviy.pp.ua">Next.js</a></li>
<li><a href="https://matviy.pp.ua">Node.js</a></li>
</ul>
</div> -->
<div class="block qualities">
<div class="h2 title">PERSONAL QUALITIES</div>
I possess traits such as persistence, purposefulness, responsibility, leadership, analytical, thinking,
punctuality, sociability, without bad habits
</div>
</div>
</section>
<section class="wrapper timeline">
<h2 class="h2 title">Experience</h2>
<div class="container item">
<div class="content">
<h2>Backend Developer/ Laravel, PHP developer/ FullTime/ Freelance (freelancehunt)</h2>
<p class="time">
<span id="freelancehunt_info"></span>
<br>( <span id="freelancehunt"></span>)
</p>
<p>
As a Laravel Backend Developer, I specialize in crafting efficient and scalable web solutions. Proficient in <strong>Laravel</strong>, <strong>Liviwire</strong>, <strong>PHP</strong>, <strong>Docker</strong>, API development, Composer, SQL, MySQL, <strong>Swagger</strong>, Postman and Git, I architect and maintain server-side functionalities for robust and high-performing applications.
</p>
</div>
</div>
<div class="container item">
<div class="content">
<h2>Fullstack Engineer/ Laravel, VUE developer/ FullTime/ NC-ONE.com</h2>
<p class="time">
<span id="nc_one_info"></span>
<br>( <span id="nc_one"></span>)
</p>
<p>
In this position, I was work as a fullstack developer. Using the
<strong>Laravel</strong>, Vue.js. My skill set includes the use
of Laravel, PHP, <strong>API development</strong>, Swagger, SQL, MySQL, <strong>VUE</strong>, TailwindCSS, HTML, CSS, <strong>Docker</strong>, JS, TypeScript, Git.
</p>
</div>
</div>
<div class="container item">
<div class="content">
<h2>PHP SQL Teacher/ PartTime/ nikos-ltv.lviv.ua</h2>
<p class="time">
<span id="nikos_ltv_info"></span>
<br>( <span id="nikos_ltv"></span>)
</p>
<p>
In this position I was a teacher. Taught students programming, namely the <strong>PHP</strong>, <strong>sql</strong> programming language.
Taught lessons, created tasks and checked them as they were completed. The training course lasted 90
hours. During this time, my students have learned this programming language and continue to learn
other languages.
</p>
</div>
</div>
<!--<div class="container item">
<div class="content">
<h2>Fullstack developer/ Laravel, prestashop Engineer/ Freelance (Freelancer)</h2>
<p class="time">
<span id="freelance_info"></span>
<br>( <span id="freelance"></span>)
</p>
<p>
In this position, I work as a freelancer after main work and create various services using the
<strong>Laravel framework</strong>, a popular PHP platform that I enjoy working with. My skill set
includes the use
of Laravel, <strong>prestashop</strong>, <strong>PHP</strong>, SQL, <strong>MySQL</strong>, HTML, CSS, jQuery, JS, Git.
</p>
</div>
</div>-->
<div class="container item">
<div class="content">
<h2>Fullstack Engineer/ PHP developer/ FullTime/ WebSpirit.com.ua</h2>
<p class="time">
<span id="webspirit_info"></span>
<br>( <span id="webspirit"></span>)
</p>
<p>
My role involved working with the PHP framework WhiteLion, which bears similarities to Laravel,
Symfony, <strong>prestashop</strong>. I evaluated and performed tasks within the estimated time. My
skill set included the use of
WhiteLion, HTML5, CSS3, SASS, SCSS, JS, jQuery, AJAX, PHP, Postman, SQL, MySQL, Figma, Git.
</p>
</div>
</div>
<div class="container item">
<div class="content">
<h2>Fullstack Engineer/ Prestashop Developer/ FullTime/ SoftSprint.net</h2>
<p class="time">
<span id="softsprint_info"></span>
<br>( <span id="softsprint"></span>)
</p>
<p>
My experience as a developer included working with <strong>PrestaShop developer</strong>,
<strong>WordPress</strong>, <strong>Thirty Bees</strong>.
I created and edited
themes for these CMS platforms and performed various frontend and backend modifications.
Additionally, I evaluated and completed tasks within agreed timelines. My skill set included the use
of HTML5, CSS3, SASS, SCSS, JS, jQuery, AJAX, PHP, SQL, MySQL, Smarty, Twig, Figma, Git, Gitlab,
Github. I always strived to deliver high-quality solutions that met the needs of clients and
provided the best user experience possible.
</p>
</div>
</div>
<div class="container item">
<div class="content">
<h2>Fullstack Engineer/ WordPress developer/ FullTime/ Sure Lock & key LLC</h2>
<p class="time">
<span id="surelockkey_info"></span>
<br>( <span id="surelockkey"></span>)
</p>
<p>
In my role as a <strong>WordPress developer</strong> for the company, I designed and developed
websites using HTML5,
CSS3, SCSS, SASS, PHP, SQL, TWIG, JS, jQuery, AJAX, Carbon Fields. Additionally, I implemented
multi-site WordPress (WP) solutions to streamline website management and optimize performance. My
skills and experience enabled me to deliver high-quality websites that met the clients' requirements
and provided an exceptional user experience.
</p>
</div>
</div>
<div class="container item">
<div class="content">
<h2>
Fullstack Engineer/ PHP developer/ FullTime/ <a href="https://apartner.pro"
target="_blank" rel="dofollow noreferrer">APARTNER.PRO</a>
</h2>
<p class="time">
<span id="apartner_info"></span>
<br>( <span id="apartner"></span>)
</p>
<p>
As a <strong>Fullstack developer</strong> skilled in <strong>WordPress</strong>, <strong>PrestaShop</strong>, and <strong>Laravel</strong>, I have designed and built websites using a range of technologies including HTML, CSS, SCSS, SASS, PHP, SQL, Twig, Smarty, ACF, JS, jQuery, AJAX, and Laravel.Mix. My proficiency in these tools has enabled me to create high-quality websites that align with client needs and offer outstanding user experiences.
</p>
</div>
</div>
<!--<div class="container item">
<div class="content">
<h2>Web development/ Wordpress developer/ FullTime/ company "Your Store"</h2>
<p class="time">
<span id="yourstore_info"></span>
<br>( <span id="yourstore"></span>)
</p>
<p>
In this role, I designed and <strong>developed WordPress</strong> websites using the Elementor
plugin. My tasks
included implementing revisions based on feedback from both my supervisor and clients. Proficiency
in WordPress, Elementor, PHP, SQL, CSS, HTML, JS, jQuery was essential for this position.
</p>
</div>
</div>-->
<!--<div class="container item">
<div class="content">
<h2>Front-end Engineer/ HTML developer/ Freelance (Freelancer)/ FullTime/ Lovecoffee.pl</h2>
<p class="time">
<span id="lovecoffee_info"></span>
<br>( <span id="lovecoffee"></span>)
</p>
<p>
The job involved working remotely for an average of 7-9 hours per day, with responsibilities
including editing product code in HTML5/CSS3, modifying existing code, adding visual content
such as photos and videos to effectively describe the products. Proficiency in HTML, CSS, Photoshop
was required for the role.
</p>
</div>
</div>-->
</section>
<section class="hire download-cv">
<div class="wrapper">
<a href="https://apartner.pro/cv" target="_blank" rel="dofollow noreferrer" class="link_load" title="Hire FullStack Developer Laravel, Prestashop, WordPress, Thirty Bees, PHP, SQL, VUE, JS, jQuery, Download CV" download>Download cv</a>
<a href="https://t.me/RomanMatviy" target="_blank" rel="nofollow noreferrer noopener" class="link_load" title="Hire FullStack Developer Prestashop, Laravel, WordPress, Thirty Bees, PHP, SQL, VUE"><h2 class="title">Hire developer</h2></a>
</div>
</section>
<div class="modal" id="exitModal" onclick="closeModal()">
<div class="modal-content" onclick="event.stopPropagation();">
<h4 class="title">Stay with me!</h4>
<p>
Thank you for visiting my website. If you have any questions or are interested in collaboration, please reach out. I'm ready to listen to your ideas and work towards the best solution for you. Your success is my priority, and I'm here to support you every step of the way. I value your interest and hope this marks the start of a successful partnership.
<br>
<br>
Enjoy a 10% discount on my services with promo code <strong class="promo">'HireRomanDev'</strong>.
</p>
<br>
<h3 id="countdown">Time remaining for this offer: <b>3 hours</b></h3>
<br>
<div class="wrapper-btn">
<button class="btn btn-close btn-danger" onclick="closeModal()">Closing the offer</button>
<a class="btn btn-contact btn-success" href="https://t.me/RomanMatviy" target="_blank" rel="nofollow noreferrer noopener" title="Hire FullStack Developer Prestashop, Laravel, WordPress, Thirty Bees, PHP, SQL, VUE">Hire a Fullstack Developer</a>
</div>
</div>
</div>
<footer class="footer">
<div class="wrapper">
<a href="https://roman.matviy.pp.ua" title="FullStack Developer Laravel Prestashop Rocket LMS WordPress Thirty Bees PHP VUE SQL JS JavaScript" target="_blank" rel="dofollow">
@ Roman Matviy 2018 - <span id="year"></span>
</a>
</div>
</footer>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="assets/dist/index.js"></script> -->
<script>
document.addEventListener('DOMContentLoaded', function () {
// change canonical link
changeCanonicalLink();
// Google tag (gtag.js)
setTimeout(function () {
// Load Google Tag Manager script
var script = document.createElement('script');
script.async = true;
script.src = 'https://www.googletagmanager.com/gtag/js?id=G-QLQDMJH9MT';
document.head.appendChild(script);
// Initialize gtag
script.onload = function () {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-QLQDMJH9MT');
};
}, 3000);
timeToCurrent('all_time', '2018-09-01');
timeToCurrent('freelancehunt', '2023-11-01');
timeToCurrent('nc_one', '2023-01-01', '2023-12-31');
timeToCurrent('nikos_ltv', '2023-03-01', '2023-06-31');
//timeToCurrent('freelance', '2022-04-01', '2023-04-01');
timeToCurrent('webspirit', '2022-06-01', '2023-03-31');
timeToCurrent('softsprint', '2020-11-05', '2022-06-01');
timeToCurrent('surelockkey', '2019-09-01', '2020-11-01');
//timeToCurrent('surelockkey', '2020-05-01', '2020-11-01');
timeToCurrent('apartner', '2018-09-01', '2019-09-01');
//timeToCurrent('yourstore', '2019-03-01', '2019-07-01');
//timeToCurrent('lovecoffee', '2018-12-01', '2019-03-01');
var d = new Date();
var n = d.getFullYear();
document.getElementById('year').innerHTML = n;
var url_string = window.location.href
var url = new URL(url_string);
var show = url.searchParams.get('show');
if (show == 1) {
var div = document.getElementsByClassName('phoneHide');
div[0].style.display = 'block';
var div = document.getElementsByClassName('phoneShow');
div[0].style.display = 'none';
var link = document.getElementsByClassName('download-cv');
link[0].style.display = 'none';
}
var phoneHide = document.getElementById('phoneHide');
var phoneShow = document.getElementById('phoneShow');
phoneShow.onclick = function () {
phoneHide.style.display = 'block';
phoneShow.style.display = 'none';
};
//! Smooth Scrolling goToBlock
const links = document.querySelectorAll('.goToBlock');
links.forEach(link => {
link.addEventListener('click', function (event) {
event.preventDefault();
const targetId = link.getAttribute('href');
const targetSection = document.querySelector(targetId);
if (targetSection) {
targetSection.scrollIntoView({ behavior: 'smooth' });
}
});
});
});
// datestart = date start 2019-04-01
// dateend = date end 2019-04-01
// element = id element
function timeToCurrent(element, datestart, dateend = 0) {
var res = document.getElementById(element);
var closest = res.closest('.container');
if (closest) {
var info_block = document.getElementById(`${element}_info`);
if (info_block) {
var start = datestart.slice(0, -3);
var end = 'present';
if (dateend) {
end = dateend.slice(0, -3);
end = `<time>${end}</time>`;
}
info_block.innerHTML = `<time>${start}</time > - ${end}`;
}
}
var dateend = dateend ? new Date(dateend) : new Date();
var old = new Date(datestart); //2019-04-01'
var days = Math.ceil(Math.abs(old.getTime() - dateend.getTime()) / (1000 * 3600 * 24));
var year = Math.floor(days / 365);
var months = Math.floor((days - (year * 365)) / 30);
var text = '';
if (months == 12) {
year = ++year;
months = false;
}
if (year) {
text += year > 1 ? year + ' years ' : year + ' year ';
if (months) {
text += 'and ';
}
}
if (months) {
text += months > 1 ? months + ' months ' : months + ' month ';
}
res.innerHTML = text;
}
function changeCanonicalLink() {
// Get the parameter value from the URL
const urlParams = new URLSearchParams(window.location.search);
let parameterValue = urlParams.get('s');
// Filter the parameter value to include only alphanumeric characters
if (parameterValue) {
parameterValue = parameterValue.replace(/[^a-zA-Z0-9-_ .]/g, '');
}
// Update the canonical link with the parameter value
const canonicalLink = document.getElementById('canonicalLink');
if (parameterValue) {
canonicalLink.href = `https://roman.matviy.pp.ua/?s=${parameterValue}`;
// Update og:url
const ogUrl = document.querySelector('meta[property="og:url"]');
ogUrl.setAttribute('content', `https://roman.matviy.pp.ua/?s=${parameterValue}`);
updateTagText(parameterValue);
}
}
function updateTagText(text) {
// Replace hyphens and underscores with spaces
let updatedText = text.replace(/[-_]/g, ' ');
// Check if the updated text is less than 7 characters
if (updatedText.length < 7) {
updatedText += ' Fullstack Developer';
}
const textContent = `${updatedText} - Roman Matviy`;
// Update the meta description
const metaDesc = document.querySelector('meta[name="description"]');
metaDesc.setAttribute('content', textContent);
// Update the og:description
const ogDesc = document.querySelector('meta[property="og:description"]');
ogDesc.setAttribute('content', textContent);
// Update the og:title
const ogTitle = document.querySelector('meta[property="og:title"]');
ogTitle.setAttribute('content', textContent);
// Update the twitter:title
const twitterTitle = document.querySelector('meta[name="twitter:title"]');
twitterTitle.setAttribute('content', textContent);
// Update the twitter:description
const twitterDesc = document.querySelector('meta[name="twitter:description"]');
twitterDesc.setAttribute('content', textContent);
// Update the h1 tag
//const h1Tag = document.querySelector('h1');
const h1Tag = document.getElementById('pageTitle');
h1Tag.textContent = textContent;
// Update the title tag
const pageTitle = document.title;
document.title = textContent;
}
//! Favicon
var favicons = [
'/assets/favicons/1.png',
'/assets/favicons/2.png',
];
var currentFaviconIndex = 0;
var intervalId; // Зберігаємо ідентифікатор інтервалу
function startFaviconAnimation() {
intervalId = setInterval(function() {
changeFavicon(favicons[currentFaviconIndex]);
currentFaviconIndex = (currentFaviconIndex + 1) % favicons.length;
}, 1000);
}
function stopFaviconAnimation() {
clearInterval(intervalId);
changeFavicon('favicon.ico');
}
//! Countdown
// Функція для отримання часу, коли користувач записався
function getSignUpTime() {
const currentTime = new Date().getTime();
return currentTime;
}
// Функція для встановлення кукі з часом запису
function setSignUpTimeCookie() {
const signUpTime = getSignUpTime();
document.cookie = `signUpTime=${signUpTime}; expires=${new Date(signUpTime + 3 * 60 * 60 * 1000).toUTCString()}; path=/`;
}
// Функція для отримання часу, коли користувач повинен бути повідомлений про новий відлік
function getNextCountdownTime() {
const signUpTime = parseFloat(document.cookie.replace(/(?:(?:^|.*;\s*)signUpTime\s*=\s*([^;]*).*$)|^.*$/, "$1"));
return signUpTime + 3 * 60 * 60 * 1000;
}
// Функція для оновлення годинника
function updateCountdown() {
const currentTime = new Date().getTime();
const nextCountdownTime = getNextCountdownTime();
if (currentTime < nextCountdownTime) {
const timeDifference = nextCountdownTime - currentTime;
const hours = Math.floor(timeDifference / (60 * 60 * 1000));
const minutes = Math.floor((timeDifference % (60 * 60 * 1000)) / (60 * 1000));
const seconds = Math.floor((timeDifference % (60 * 1000)) / 1000);
document.getElementById('countdown').innerHTML = `Time remaining for this offer: <b class="promo">${hours} hours, ${minutes} minutes, ${seconds} seconds</b>`;
} else {
setSignUpTimeCookie();
updateCountdown();
}
}
// Set the modal closed time to local storage when the modal is closed
function setModalCloseTime() {
modalClosedTime = new Date().getTime();
localStorage.setItem('modalClosedTime', modalClosedTime);
}
//! Modal
document.addEventListener('visibilitychange', function() {
if (document.visibilityState === 'hidden') {