using Mih4n.About;
        using Mih4n.Viewer;

        public class AboutViewer : IViewer<About>
        {
            public About View()
                => new About()
                {
                    Nick = "Mih4n",
                    Name = "Mikhail",
                    Surname = "Loseu"
                }
        }
    

About Me

I'm Mikhail Losev, a Full Stack Developer from Belarus with experience in creating robust and scalable web applications.
I work on both frontend and backend, focusing on writing clean, maintainable code and delivering solutions that meet real-world needs.

I value efficient development processes, reliability, and clear communication.
Constantly improving my skills, I aim to build products that are both functional and user-friendly.

Feel free to explore my projects and get in touch if you'd like to collaborate.

    
        using Mih4n.Stack;
        using Mih4n.Viewer;

        public class StackViewer : IViewer<Stack>
        {
            public Stack View()
                => new Stack()
                {
                    Title = "Technology Stack",
                    Description = "A collection of technologies and tools I use in my projects.",
                    Stack = [
                        
C# .NET CSS LESS HTML JavaScript TypeScript Vue.js Nuxt.js NGINX Docker PostgreSQL Git GitHub
C# .NET CSS LESS HTML JavaScript TypeScript Vue.js Nuxt.js NGINX Docker PostgreSQL Git GitHub
] } }