Photo of Anastasiya Kniazeva

Anastasiya Kniazeva

UX/UI designer


Contact

  • Location: Warsaw, Poland
  • Email: knazevanasta394@gmail.com
  • Linkedin
  • Github

Portfolio

Skills

  • Figma
  • Photoshop
  • HTML&CSS
  • Git/Github

Languages

  • Russian (native)
  • Belarusian (native)
  • English (A2)
About me

I'm a UX/UI designer. l'm constantly working on my skills in that area. I quickly find contact with new people. Good in time management. I'm able to withstand an intensive mode of operation. I can focus on creative process and I'm driven by appreciable results. Driven, focused, and dedicated to the creative process.

Education

  • Minsk College of Entrepreneurship, full-time, accounting, analysis and control, from 2014 to 2017)
  • UX/UI course (2023-2024))
  • Udemy basic course HTML/CSS
  • FreeCodeCamp

Code example

                        
   first: for (let i = 0; i < 3; i++) {
   console.log(`First level: ${i}`);
   for (let j = 0; j < 3; j++) {
        console.log(`Second level: ${j}`);
     }
    for (let k = 0; k < 3; k++) {
        if (k === 2) continue first;
        console.log(`Third level: ${k}`);
     }
    }