Age: 29
Country: Belarus
City: Minsk
Education: BSU, FSC, specialty: Applied Informatics
JavaScript (ES2015+) · TypeScript
Vue 3 · Nuxt · Pinia · Vite · SSR / SSG
Vitest · Vue Test Utils
HTML · CSS (SCSS, PostCSS)
Responsive & adaptive layouts
Accessibility & cross-browser compatibility
CSS architecture (BEM, CSS Modules)
Animations & performance
Git · GitHub · Bitbucket
Node.js · REST APIs
Gulp · Webpack
React · Zustand · Next.js
July 2019 – July 2020 Front-end developer – Sportdata LLC
July 2020 – March 2022 Freelance Front-end developer
March 2022 – January 2025 Front-end developer – Wild Spike LLC
January 2025 – Present Front-end developer – Diesel Puppet LLC
.view {
position: relative;
width: 100px;
height: 100px;
}
.view__inner {
position: absolute;
display: block;
width: 100px;
height: 100px;
border-radius: 50%;
box-shadow:
7.5px -5px 0 0 rgba(49,27,146, .6),
-7.5px -5px 0 0 rgba(81,45,168, .6),
0 10px 0 0 rgba(103,58,183, .6);
animation: rotate 5s linear infinite;
}
@keyframes rotate {
50% {
transform: scale(1.4) rotate(360deg);
}
100% {
transform: scale(1) rotate(720deg);
}
}