-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1291 lines (1282 loc) · 58.4 KB
/
index.html
File metadata and controls
1291 lines (1282 loc) · 58.4 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="color-scheme" content="dark light" />
<meta
name="theme-color"
content="#000000"
media="(prefers-color-scheme: dark)"
/>
<meta
name="description"
content="Portfolio Dmitrii Golovicichin: web development, projects, skills and contacts. Creation of modern websites and applications."
/>
<meta
name="keywords"
content="Dmitrii Golovicichin, dgl, Головичкин, web developer, portfolio, websites, front-end, developer, HTML, CSS, JavaScript, React, NextJS"
/>
<meta name="author" content="Dmitrii Golovicichin" />
<!-- Open Graph для красивого отображения в соцсетях -->
<meta property="og:title" content="Portfolio Dmitrii Golovicichin" />
<meta
property="og:description"
content="Portfolio Dmitrii Golovicichin: web development, projects, skills and contacts. Creation of modern websites and applications."
/>
<meta property="og:image" content="./images/open_graph.webp" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:url"
content="https://dumkaguv.github.io/portfolio-website"
/>
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Portfolio Dmitrii Golovicichin" />
<meta
name="twitter:description"
content="Portfolio Dmitrii Golovicichin: web development, projects, skills and contacts."
/>
<meta name="twitter:image" content="./images/open_graph.webp" />
<meta
name="google-site-verification"
content="1N_3vfkRyYtsBKolJtjEsOKwwltzLeN5Prsq76te1-E"
/>
<link rel="stylesheet" href="./styles/main.css" />
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon.png" />
<link rel="icon" type="image/png" sizes="48x48" href="./images/favicon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon.png" />
<script src="./scripts/main.js" type="module" defer></script>
<title>Dmitrii Golovicichin</title>
</head>
<body>
<div class="curtain">
<div class="curtain__top"></div>
<div class="curtain__bottom"></div>
</div>
<header class="header__outer container__outer">
<div class="header container glass-block" data-js-header>
<div class="header__logo-outer">
<a
class="header__logo logo"
href="#"
data-before-1="<"
data-before-2="{"
data-before-3="["
data-before-4="("
data-before-5="/"
data-after-1="/>"
data-after-2="}"
data-after-3="]"
data-after-4=")"
data-after-5="/"
>
<h1 class="logo__title">dgl</h1>
</a>
<div class="switcher-mobile">
<div
class="header__theme-switcher-outer"
title="Switch theme"
data-js-theme-switcher
tabindex="0"
>
<input class="header__theme-switcher" type="checkbox" />
<div class="switcher__icons">
<div class="switcher__icons-outer">
<svg
class="switcher-icon sun"
width="20"
height="20"
viewBox="0 0 20 20"
data-js-theme-switcher-icon-sun
>
<path
d="M14.06 12.991a5.487 5.487 0 0 1-4.174-1.611A5.487 5.487 0 0 1 8.27 7.475c0-.841.187-1.652.537-2.386a5.46 5.46 0 0 1 .562-.922c-.385.04-.754.121-1.114.233a5.855 5.855 0 0 0-4.088 5.582 5.85 5.85 0 0 0 10.957 2.852 5.204 5.204 0 0 1-1.064.157Z"
fill="#191820"
></path>
</svg>
</div>
<div class="switcher__icons-outer">
<svg
class="switcher-icon moon"
viewBox="0 0 20 20"
width="20"
height="20"
data-js-theme-switcher-icon-moon
>
<path
d="M9.994 2.502a.463.463 0 0 0-.059.015.468.468 0 0 0-.365.468V4.39a.468.468 0 1 0 .936 0V2.985a.468.468 0 0 0-.512-.483ZM5.019 4.565a.469.469 0 0 0-.278.805l.98.995a.476.476 0 0 0 .674-.673l-.995-.98a.468.468 0 0 0-.381-.147Zm9.935 0a.469.469 0 0 0-.278.147l-.995.98a.476.476 0 0 0 .673.674l.98-.995a.468.468 0 0 0-.336-.805h-.044Zm-4.916 1.697a3.757 3.757 0 0 0-3.746 3.746 3.757 3.757 0 0 0 3.746 3.746 3.757 3.757 0 0 0 3.746-3.746 3.757 3.757 0 0 0-3.746-3.746ZM2.926 9.54a.47.47 0 1 0 .088.937H4.42a.468.468 0 1 0 0-.937H2.926Zm12.643 0a.47.47 0 1 0 .087.937h1.405a.468.468 0 1 0 0-.937H15.57Zm-1.595 3.966a.469.469 0 0 0-.059.014.468.468 0 0 0-.234.805l.995.98a.468.468 0 1 0 .658-.658l-.98-.995a.468.468 0 0 0-.38-.146Zm-7.975.014a.468.468 0 0 0-.278.132l-.98.995a.468.468 0 1 0 .658.658l.995-.98A.469.469 0 0 0 6 13.52Zm3.995 1.624a.466.466 0 0 0-.059.015.468.468 0 0 0-.366.468v1.405a.468.468 0 1 0 .937 0v-1.405a.468.468 0 0 0-.512-.483Z"
fill="#fff"
></path>
</svg>
</div>
</div>
<div
class="header__theme-switcher-slider"
data-js-theme-switcher-slider
></div>
</div>
<button
class="header__burger-button button button--icon glass-block"
title="Toggle menu"
data-js-menu-open-button
>
<span class="header__burger-line"></span>
<span class="header__burger-line"></span>
<span class="header__burger-line"></span>
<span class="visually-hidden">Open menu</span>
</button>
</div>
</div>
<div class="header__menu-outer">
<nav class="header__menu">
<ul class="header__menu-list">
<li class="header__menu-item">
<a href="#about" class="header__menu-link">About me</a>
</li>
<li class="header__menu-item">
<a href="#portfolio" class="header__menu-link">Portfolio</a>
</li>
<li class="header__menu-item">
<a href="#work-experience" class="header__menu-link"
>Work experience</a
>
</li>
<li class="header__menu-item">
<a href="#footer" class="header__menu-link">Contacts</a>
</li>
</ul>
</nav>
</div>
<div
class="header__theme-switcher-outer hidden-mobile"
title="Switch theme"
data-js-theme-switcher
tabindex="0"
>
<input class="header__theme-switcher" type="checkbox" />
<div class="switcher__icons">
<div class="switcher__icons-outer">
<svg
class="switcher-icon sun"
width="20"
height="20"
viewBox="0 0 20 20"
data-js-theme-switcher-icon-sun
>
<path
d="M14.06 12.991a5.487 5.487 0 0 1-4.174-1.611A5.487 5.487 0 0 1 8.27 7.475c0-.841.187-1.652.537-2.386a5.46 5.46 0 0 1 .562-.922c-.385.04-.754.121-1.114.233a5.855 5.855 0 0 0-4.088 5.582 5.85 5.85 0 0 0 10.957 2.852 5.204 5.204 0 0 1-1.064.157Z"
fill="#191820"
></path>
</svg>
</div>
<div class="switcher__icons-outer">
<svg
class="switcher-icon moon"
viewBox="0 0 20 20"
width="20"
height="20"
data-js-theme-switcher-icon-moon
>
<path
d="M9.994 2.502a.463.463 0 0 0-.059.015.468.468 0 0 0-.365.468V4.39a.468.468 0 1 0 .936 0V2.985a.468.468 0 0 0-.512-.483ZM5.019 4.565a.469.469 0 0 0-.278.805l.98.995a.476.476 0 0 0 .674-.673l-.995-.98a.468.468 0 0 0-.381-.147Zm9.935 0a.469.469 0 0 0-.278.147l-.995.98a.476.476 0 0 0 .673.674l.98-.995a.468.468 0 0 0-.336-.805h-.044Zm-4.916 1.697a3.757 3.757 0 0 0-3.746 3.746 3.757 3.757 0 0 0 3.746 3.746 3.757 3.757 0 0 0 3.746-3.746 3.757 3.757 0 0 0-3.746-3.746ZM2.926 9.54a.47.47 0 1 0 .088.937H4.42a.468.468 0 1 0 0-.937H2.926Zm12.643 0a.47.47 0 1 0 .087.937h1.405a.468.468 0 1 0 0-.937H15.57Zm-1.595 3.966a.469.469 0 0 0-.059.014.468.468 0 0 0-.234.805l.995.98a.468.468 0 1 0 .658-.658l-.98-.995a.468.468 0 0 0-.38-.146Zm-7.975.014a.468.468 0 0 0-.278.132l-.98.995a.468.468 0 1 0 .658.658l.995-.98A.469.469 0 0 0 6 13.52Zm3.995 1.624a.466.466 0 0 0-.059.015.468.468 0 0 0-.366.468v1.405a.468.468 0 1 0 .937 0v-1.405a.468.468 0 0 0-.512-.483Z"
fill="#fff"
></path>
</svg>
</div>
</div>
<div
class="header__theme-switcher-slider"
data-js-theme-switcher-slider
></div>
</div>
</div>
</header>
<main class="main container__outer">
<section class="hero container">
<div class="hero__title">
<div class="hero__title-absolute-outer">
<h2 class="hero__title-absolute" data-js-hero-title>
<span class="hero__title-visible"></span
><span class="hero__title-invisible"></span>
</h2>
</div>
<div class="hero__title-measures" data-js-hero-title-measures>
<div class="hero__title-measures-text">
<p>Hi! I'm Dmitrii and I'm a frontend developer</p>
</div>
<div class="hero__title-measures-text">
<p>
I create adaptive interfaces with an emphasis on details and clean
code
</p>
</div>
<div class="hero__title-measures-text">
<p>I create websites that not only work, but are impressive.</p>
</div>
<div class="hero__title-measures-text">
<p>
I design modern web interfaces with an emphasis on usability and
aesthetics
</p>
</div>
</div>
</div>
<div class="hero__second">
<div class="hero__notebook notebook">
<div class="notebook__top-backface notebook-logo">dgl</div>
<div class="notebook__top">
<div class="notebook__screen">
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code--short"
></div>
<div class="notebook__code notebook__code--pink"></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short"
></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short notebook__code--short-offset"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code--long"
></div>
<div class="notebook__code notebook__code--short"></div>
<div
class="notebook__code notebook__code--pink notebook__code--short"
></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code notebook__code--long-offset"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code--short"
></div>
<div class="notebook__code"></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short notebook__code--huge-offset"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code--long"
></div>
<div class="notebook__code notebook__code--long"></div>
<div
class="notebook__code notebook__code--yellow notebook__code--short"
></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--huge-offset"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code--short"
></div>
<div
class="notebook__code notebook__code--pink notebook__code--short"
></div>
<div class="notebook__code notebook__code--long"></div>
<div class="notebook__code notebook__code--yellow"></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short notebook__code--huge-offset"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code"
></div>
<div class="notebook__code notebook__code--short"></div>
<div
class="notebook__code notebook__code--yellow notebook__code--short"
></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code notebook__code--long-offset"
></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short notebook__code--long-offset"
></div>
<div
class="notebook__code notebook__code--transparent notebook__code"
></div>
<div class="notebook__code notebook__code--short"></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--yellow notebook__code--short notebook__code--huge-offset"
></div>
<div class="notebook__code notebook__code--pink"></div>
</div>
<div class="notebook__code-line">
<div
class="notebook__code notebook__code--transparent notebook__code--huge-offset"
></div>
<div class="notebook__code notebook__code--long"></div>
<div
class="notebook__code notebook__code--pink notebook__code--short"
></div>
</div>
</div>
<div class="notebook__top-logo notebook-logo">dgl</div>
</div>
<div class="notebook__bottom">
<div class="notebook__touchpad">
<div class="notebook__touchpad-left"></div>
<div class="notebook__touchpad-right"></div>
<div class="notebook__touchpad-top"></div>
</div>
<div class="notebook__keyboard">
<div class="notebook__keyboard-line">
<div class="notebook__keyboard-key">~</div>
<div class="notebook__keyboard-key">1</div>
<div class="notebook__keyboard-key">2</div>
<div class="notebook__keyboard-key">3</div>
<div class="notebook__keyboard-key">4</div>
<div class="notebook__keyboard-key">5</div>
<div class="notebook__keyboard-key">6</div>
<div class="notebook__keyboard-key">7</div>
<div class="notebook__keyboard-key">8</div>
<div class="notebook__keyboard-key">9</div>
<div class="notebook__keyboard-key">0</div>
<div
class="notebook__keyboard-key notebook__keyboard-key--3"
></div>
</div>
<div class="notebook__keyboard-line">
<div
class="notebook__keyboard-key notebook__keyboard-key--2"
></div>
<div class="notebook__keyboard-key">Q</div>
<div class="notebook__keyboard-key">W</div>
<div class="notebook__keyboard-key">E</div>
<div class="notebook__keyboard-key">R</div>
<div class="notebook__keyboard-key">T</div>
<div class="notebook__keyboard-key">Y</div>
<div class="notebook__keyboard-key">U</div>
<div class="notebook__keyboard-key">I</div>
<div class="notebook__keyboard-key">O</div>
<div class="notebook__keyboard-key">P</div>
<div
class="notebook__keyboard-key notebook__keyboard-key--2"
></div>
</div>
<div class="notebook__keyboard-line">
<div
class="notebook__keyboard-key notebook__keyboard-key--3"
></div>
<div class="notebook__keyboard-key">A</div>
<div class="notebook__keyboard-key">S</div>
<div class="notebook__keyboard-key">D</div>
<div class="notebook__keyboard-key">F</div>
<div class="notebook__keyboard-key">G</div>
<div class="notebook__keyboard-key">H</div>
<div class="notebook__keyboard-key">J</div>
<div class="notebook__keyboard-key">K</div>
<div class="notebook__keyboard-key">L</div>
<div
class="notebook__keyboard-key notebook__keyboard-key--3"
></div>
</div>
<div class="notebook__keyboard-line">
<div
class="notebook__keyboard-key notebook__keyboard-key--4"
></div>
<div class="notebook__keyboard-key">Z</div>
<div class="notebook__keyboard-key">X</div>
<div class="notebook__keyboard-key">C</div>
<div class="notebook__keyboard-key">V</div>
<div class="notebook__keyboard-key">B</div>
<div class="notebook__keyboard-key">N</div>
<div class="notebook__keyboard-key">M</div>
<div class="notebook__keyboard-key">.</div>
<div
class="notebook__keyboard-key notebook__keyboard-key--4"
></div>
</div>
<div class="notebook__keyboard-line">
<div
class="notebook__keyboard-key notebook__keyboard-key--1"
></div>
<div
class="notebook__keyboard-key notebook__keyboard-key--1"
></div>
<div
class="notebook__keyboard-key notebook__keyboard-key--1"
></div>
<div class="notebook__keyboard-key notebook__keyboard-key--5">
⸻
</div>
<div
class="notebook__keyboard-key notebook__keyboard-key--1"
></div>
<div
class="notebook__keyboard-key notebook__keyboard-key--1"
></div>
<div
class="notebook__keyboard-key notebook__keyboard-key--1"
></div>
</div>
</div>
</div>
</div>
<div class="hero__explore-buttons">
<div class="hero__explore-button-outer">
<a
href="./Dmitrii_Golovicichin_CV_EN_no_photo.pdf"
class="hero__explore-button button glass-block"
target="_blank"
rel="noopener noreferrer"
>View CV</a
>
</div>
<div class="hero__explore-button-outer">
<a class="hero__explore-button button glass-block" href="#about">
Details
<svg
fill="#000000"
height="20px"
width="20px"
viewBox="0 0 330 330"
>
<path
d="M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393 c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393 s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z"
/>
</svg>
</a>
</div>
</div>
</div>
</section>
<section id="about" class="container">
<header class="container__header">
<h2 class="container__header-title" data-aos="fade-right">
Who <span class="highlighted-text">am I</span>?
</h2>
</header>
<div class="container__content" data-aos="fade-right">
<div class="glass-block">
<p>
I am a web developer with a focus on creating
<span class="highlighted-text">adaptive and modern</span>
interfaces. I specialize in website layout with an emphasis on
<span class="highlighted-text"
>semantics, accessibility and clean code</span
>. I am constantly developing my front-end skills, delving deeper
into <span class="highlighted-text">JavaScript</span> and studying
best practices <span class="highlighted-text">UI/UX</span>.
</p>
<p>
I value it in my work
<span class="highlighted-text"
>structured approach, attention to detail and readable code</span
>. I decide calmly
<span class="highlighted-text">non-standard tasks</span> and I strive
to make the result look
<span class="highlighted-text">stylish</span> and worked
<span class="highlighted-text">flawless</span>.
</p>
<p>Now open to new projects and opportunities for cooperation.</p>
</div>
<div class="glass-block about" data-aos="fade-up">
<div class="about__skills">
<h3>My <span class="highlighted-text">hard</span> skills:</h3>
<ul class="list">
<li class="list__item">
<span class="highlighted-text">HTML (HTML5)</span>, JSX,
semantics, UI/UX
</li>
<li class="list__item">
<span class="highlighted-text">CSS (CSS3)</span>, SASS (SCSS),
TailwindCSS
</li>
<li class="list__item">
<span class="highlighted-text">JavaScript (ES6+, OOP)</span>,
TypeScript
</li>
<li class="list__item">
<span class="highlighted-text">NextJS</span>, React
</li>
<li class="list__item">
<span class="highlighted-text">Redux</span> (Redux Toolkit),
Zustand
</li>
<li class="list__item">
<span class="highlighted-text">Prisma</span> (PostgreSQL)
</li>
<li class="list__item">
<span class="highlighted-text">Webpack</span>, Vite
</li>
<li class="list__item">
<span class="highlighted-text">Git (GitHub)</span>
</li>
<li class="list__item">
<span class="highlighted-text">Figma</span>, Adobe Photoshop
</li>
</ul>
</div>
<div class="about__skills">
<h3>My <span class="highlighted-text">soft</span> skills:</h3>
<ul class="list">
<li class="list__item">
I know how to work
<span class="highlighted-text">in a team</span>, I have
<span class="highlighted-text">experience in communication</span>
with designers, managers and other developers
</li>
<li class="list__item">
I am <span class="highlighted-text">responsible</span> about
deadlines
</li>
<li class="list__item">
I have
<span class="highlighted-text">time management</span> skills
</li>
<li class="list__item">
I know how to
<span class="highlighted-text">solve conflict situations</span>
</li>
<li class="list__item">
<span class="highlighted-text">I am motivated</span> to improve
my skills,
<span class="highlighted-text">constantly studying</span> new
technologies in my field of activity
</li>
<li class="list__item">
I am <span class="highlighted-text">attentive</span> to the
details of the terms of reference to improve my skills.
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="portfolio" class="container portfolio" data-aos="zoom-in">
<header class="container__header">
<h2 class="container__header-title">
My <span class="highlighted-text">Portfolio</span>
</h2>
</header>
<div class="portfolio__slider slider" data-js-portfolio-slider>
<ul class="slider__list">
<li class="slider__item glass-block">
<img
class="slider__item-image"
alt="Верстка сайта Future Tech"
src="./images/portfolio/future-tech.png"
tabindex="0"
loading="lazy"
/>
<div class="slider__item-info">
<h3 class="slider__item-title">
Designer landing <br />
<a
title="Open the website in a new tab"
class="slider__item-link highlighted-text"
href="https://dumkaguv.github.io/Future-Tech/"
target="_blank"
>Future Tech</a
>
</h3>
<p class="slider__item-description">
Adaptive website layout for an AI service with an emphasis on
visual elements.
</p>
<ul class="slider__item-technologies-list">
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/js.svg"
width="32"
height="32"
title="JavaScript"
alt="JavaScript"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/html.svg"
width="32"
height="32"
title="HTML5"
alt="HTML5"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/scss.svg"
width="32"
height="32"
title="SCSS"
alt="SCSS"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/webpack.svg"
width="32"
height="32"
title="Webpack"
alt="Webpack"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/figma.svg"
width="32"
height="32"
title="Figma"
alt="Figma"
loading="lazy"
/>
</li>
</ul>
</div>
</li>
<li class="slider__item glass-block">
<img
class="slider__item-image"
alt="Онлайн-магазин Pizza Slice"
src="./images/portfolio/pizza-slice.png"
tabindex="0"
loading="lazy"
/>
<div class="slider__item-info">
<h3 class="slider__item-title">
Online store <br />
<a
title="Open the website in a new tab"
class="slider__item-link highlighted-text"
href="https://pizza-slice-iota.vercel.app/"
target="_blank"
>Pizza Slice</a
>
</h3>
<p class="slider__item-description">
Fullstack shop with search, auth, payment, filters and more.
</p>
<ul class="slider__item-technologies-list">
<li class="slider__item-technologies-item" title="NextJs">
<svg
class="slider__item-technologies-image"
width="32px"
height="32px"
viewBox="0 0 256 256"
>
<g>
<path
d="M119.616813,0.0688905149 C119.066276,0.118932037 117.314565,0.294077364 115.738025,0.419181169 C79.3775171,3.69690087 45.3192571,23.3131775 23.7481916,53.4631946 C11.7364614,70.2271045 4.05395894,89.2428829 1.15112414,109.384595 C0.12512219,116.415429 0,118.492153 0,128.025062 C0,137.557972 0.12512219,139.634696 1.15112414,146.665529 C8.10791789,194.730411 42.3163245,235.11392 88.7116325,250.076335 C97.0197458,252.753556 105.778299,254.580072 115.738025,255.680985 C119.616813,256.106338 136.383187,256.106338 140.261975,255.680985 C157.453763,253.779407 172.017986,249.525878 186.382014,242.194795 C188.584164,241.068861 189.00958,240.768612 188.709286,240.518404 C188.509091,240.36828 179.124927,227.782837 167.86393,212.570214 L147.393939,184.922273 L121.743891,146.965779 C107.630108,126.098464 96.0187683,109.034305 95.9186706,109.034305 C95.8185728,109.009284 95.7184751,125.873277 95.6684262,146.465363 C95.5933529,182.52028 95.5683284,183.971484 95.1178886,184.82219 C94.4672532,186.048207 93.9667644,186.548623 92.915738,187.099079 C92.114956,187.499411 91.4142717,187.574474 87.6355816,187.574474 L83.3063539,187.574474 L82.1552297,186.848872 C81.4044966,186.373477 80.8539589,185.747958 80.4785924,185.022356 L79.9530792,183.896422 L80.0031281,133.729796 L80.0782014,83.5381493 L80.8539589,82.5623397 C81.25435,82.0369037 82.1051808,81.3613431 82.7057674,81.0360732 C83.7317693,80.535658 84.1321603,80.4856165 88.4613881,80.4856165 C93.5663734,80.4856165 94.4172043,80.6857826 95.7434995,82.1369867 C96.1188661,82.5373189 110.007429,103.454675 126.623656,128.650581 C143.239883,153.846488 165.962072,188.250034 177.122972,205.139048 L197.392766,235.839522 L198.418768,235.163961 C207.502639,229.259062 217.112023,220.852086 224.719453,212.09482 C240.910264,193.504394 251.345455,170.835585 254.848876,146.665529 C255.874878,139.634696 256,137.557972 256,128.025062 C256,118.492153 255.874878,116.415429 254.848876,109.384595 C247.892082,61.3197135 213.683675,20.9362052 167.288368,5.97379012 C159.105376,3.32158945 150.396872,1.49507389 140.637341,0.394160408 C138.234995,0.143952798 121.693842,-0.131275573 119.616813,0.0688905149 L119.616813,0.0688905149 Z M172.017986,77.4831252 C173.219159,78.0836234 174.195112,79.2345784 174.545455,80.435575 C174.74565,81.0861148 174.795699,94.9976579 174.74565,126.348671 L174.670577,171.336 L166.73783,159.17591 L158.780059,147.01582 L158.780059,114.313685 C158.780059,93.1711423 158.880156,81.2862808 159.030303,80.7108033 C159.430694,79.3096407 160.306549,78.2087272 161.507722,77.5581875 C162.533724,77.0327515 162.909091,76.98271 166.837928,76.98271 C170.541544,76.98271 171.19218,77.0327515 172.017986,77.4831252 Z"
fill="#000000"
></path>
</g>
</svg>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/react.svg"
width="32"
height="32"
title="React"
alt="React"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/typescript.svg"
width="32"
height="32"
title="TypeScript"
alt="TypeScript"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/redux.svg"
width="32"
height="32"
title="Redux"
alt="Redux"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/tailwind-css.svg"
width="32"
height="32"
title="Tailwind CSS"
alt="Tailwind CSS"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item" title="ShadCN">
<svg
class="slider__item-technologies-image"
viewBox="0 0 256 256"
>
<defs>
<style>
.st0,
.st1 {
fill: none;
}
.st1 {
stroke: var(--color-dark);
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 32px;
}
</style>
</defs>
<rect class="st0" width="256" height="256" />
<line class="st1" x1="208" y1="128" x2="128" y2="208" />
<line class="st1" x1="192" y1="40" x2="40" y2="192" />
</svg>
</li>
<li class="slider__item-technologies-item" title="Prisma">
<svg width="32px" height="32px" viewBox="-27 0 310 310">
<g>
<path
d="M254.312882,235.518775 L148.000961,9.74987264 C145.309805,4.08935083 139.731924,0.359884549 133.472618,0.0359753113 C127.198908,-0.384374336 121.212054,2.71925839 117.939655,8.08838662 L2.63252565,194.847143 C-0.947129465,200.604248 -0.871814894,207.912774 2.8257217,213.594888 L59.2003287,300.896318 C63.5805009,307.626626 71.8662281,310.673635 79.5631922,308.384597 L243.161606,259.992851 C248.145475,258.535702 252.252801,254.989363 254.421072,250.271225 C256.559881,245.57581 256.523135,240.176915 254.32061,235.511047 L254.312882,235.518775 Z M230.511129,245.201761 L91.6881763,286.252058 C87.4533189,287.511696 83.388474,283.840971 84.269448,279.567474 L133.866738,42.0831633 C134.794079,37.6396542 140.929985,36.9364206 142.869673,41.0476325 L234.684164,236.021085 C235.505704,237.779423 235.515611,239.809427 234.711272,241.575701 C233.906934,243.341974 232.369115,244.667163 230.503401,245.201761 L230.511129,245.201761 Z"
fill="#000000"
fill-rule="nonzero"
></path>
</g>
</svg>
</li>
</ul>
</div>
</li>
<li class="slider__item glass-block">
<div class="slider__item-image-outer">
<img
class="slider__item-image"
alt="Multi Step Form"
src="./images/portfolio/multi-step-form.png"
tabindex="0"
loading="lazy"
/>
</div>
<div class="slider__item-info">
<h3 class="slider__item-title">
Multi-step form <br />
<a
title="Open the website in a new tab"
class="slider__item-link highlighted-text"
href="https://dumkaguv.github.io/Multi-Step-Form/"
target="_blank"
>Multi Step Form</a
>
</h3>
<p class="slider__item-description">
Multi-step form with inputs, errors, checkboxes and switches
</p>
<ul class="slider__item-technologies-list">
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/js.svg"
width="32"
height="32"
title="JavaScript"
alt="JavaScript"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/html.svg"
width="32"
height="32"
title="HTML5"
alt="HTML5"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/scss.svg"
width="32"
height="32"
title="SCSS"
alt="SCSS"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/figma.svg"
width="32"
height="32"
title="Figma"
alt="Figma"
loading="lazy"
/>
</li>
</ul>
</div>
</li>
<li class="slider__item glass-block">
<div class="slider__item-image-outer">
<img
class="slider__item-image"
alt="Shop Slaff"
src="./images/portfolio/shopslaff.jpg"
tabindex="0"
loading="lazy"
/>
</div>
<div class="slider__item-info">
<h3 class="slider__item-title">
Online Shop <br />
<a
title="Open the website in a new tab"
class="slider__item-link highlighted-text"
href="https://shop-slaff.vercel.app/"
target="_blank"
>Shop Slaff</a
>
</h3>
<p class="slider__item-description">
Frontend shop with search, filters, pagination, cart, favorites
and more.
</p>
<ul class="slider__item-technologies-list">
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/react.svg"
width="32"
height="32"
title="React"
alt="React"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/react-router.svg"
width="32"
height="32"
title="React Router DOM"
alt="React Router DOM"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/typescript.svg"
width="32"
height="32"
title="TypeScript"
alt="TypeScript"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/tailwind-css.svg"
width="32"
height="32"
title="TailwindCSS"
alt="TailwindCSS"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/redux.svg"
width="32"
height="32"
title="Redux"
alt="Redux"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/vite.svg"
width="32"
height="32"
title="Vite"
alt="Vite"
loading="lazy"
/>
</li>
<li class="slider__item-technologies-item">
<img
class="slider__item-technologies-image"
src="./images/figma.svg"
width="32"
height="32"
title="Figma"
alt="Figma"
loading="lazy"
/>
</li>
</ul>
</div>
</li>
<li class="slider__item glass-block">
<div class="slider__item-image-outer">
<img
class="slider__item-image"
alt="Harmoniq"
src="./images/portfolio/harmoniq.png"
tabindex="0"
loading="lazy"
/>
</div>
<div class="slider__item-info">
<h3 class="slider__item-title">
Music Player <br />
<a
title="Open the website in a new tab"
class="slider__item-link highlighted-text"
href="https://harmoniq-steel.vercel.app/"
target="_blank"
>Harmoniq</a
>
</h3>
<p class="slider__item-description">
Music player with tracks, playlists, users, playbar and search.
</p>
<ul class="slider__item-technologies-list">
<li class="slider__item-technologies-item" title="NextJs">
<svg
class="slider__item-technologies-image"
width="32px"
height="32px"
viewBox="0 0 256 256"
>
<g>
<path
d="M119.616813,0.0688905149 C119.066276,0.118932037 117.314565,0.294077364 115.738025,0.419181169 C79.3775171,3.69690087 45.3192571,23.3131775 23.7481916,53.4631946 C11.7364614,70.2271045 4.05395894,89.2428829 1.15112414,109.384595 C0.12512219,116.415429 0,118.492153 0,128.025062 C0,137.557972 0.12512219,139.634696 1.15112414,146.665529 C8.10791789,194.730411 42.3163245,235.11392 88.7116325,250.076335 C97.0197458,252.753556 105.778299,254.580072 115.738025,255.680985 C119.616813,256.106338 136.383187,256.106338 140.261975,255.680985 C157.453763,253.779407 172.017986,249.525878 186.382014,242.194795 C188.584164,241.068861 189.00958,240.768612 188.709286,240.518404 C188.509091,240.36828 179.124927,227.782837 167.86393,212.570214 L147.393939,184.922273 L121.743891,146.965779 C107.630108,126.098464 96.0187683,109.034305 95.9186706,109.034305 C95.8185728,109.009284 95.7184751,125.873277 95.6684262,146.465363 C95.5933529,182.52028 95.5683284,183.971484 95.1178886,184.82219 C94.4672532,186.048207 93.9667644,186.548623 92.915738,187.099079 C92.114956,187.499411 91.4142717,187.574474 87.6355816,187.574474 L83.3063539,187.574474 L82.1552297,186.848872 C81.4044966,186.373477 80.8539589,185.747958 80.4785924,185.022356 L79.9530792,183.896422 L80.0031281,133.729796 L80.0782014,83.5381493 L80.8539589,82.5623397 C81.25435,82.0369037 82.1051808,81.3613431 82.7057674,81.0360732 C83.7317693,80.535658 84.1321603,80.4856165 88.4613881,80.4856165 C93.5663734,80.4856165 94.4172043,80.6857826 95.7434995,82.1369867 C96.1188661,82.5373189 110.007429,103.454675 126.623656,128.650581 C143.239883,153.846488 165.962072,188.250034 177.122972,205.139048 L197.392766,235.839522 L198.418768,235.163961 C207.502639,229.259062 217.112023,220.852086 224.719453,212.09482 C240.910264,193.504394 251.345455,170.835585 254.848876,146.665529 C255.874878,139.634696 256,137.557972 256,128.025062 C256,118.492153 255.874878,116.415429 254.848876,109.384595 C247.892082,61.3197135 213.683675,20.9362052 167.288368,5.97379012 C159.105376,3.32158945 150.396872,1.49507389 140.637341,0.394160408 C138.234995,0.143952798 121.693842,-0.131275573 119.616813,0.0688905149 L119.616813,0.0688905149 Z M172.017986,77.4831252 C173.219159,78.0836234 174.195112,79.2345784 174.545455,80.435575 C174.74565,81.0861148 174.795699,94.9976579 174.74565,126.348671 L174.670577,171.336 L166.73783,159.17591 L158.780059,147.01582 L158.780059,114.313685 C158.780059,93.1711423 158.880156,81.2862808 159.030303,80.7108033 C159.430694,79.3096407 160.306549,78.2087272 161.507722,77.5581875 C162.533724,77.0327515 162.909091,76.98271 166.837928,76.98271 C170.541544,76.98271 171.19218,77.0327515 172.017986,77.4831252 Z"
fill="#000000"