using Mih4n.About;
using Mih4n.Viewer;
public class AboutViewer : IViewer<About>
{
public About View()
=> new About()
{
Nick = "Mih4n",
Name = "Mikhail",
Surname = "Loseu"
}
}
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 = [
]
}
}
using Mih4n.About;
public class AboutViewer
{
public About View()
=> new About()
{
Nick = "Mih4n",
Name = "Mikhail",
Surname = "Loseu",
}
}
using Mih4n.About;
public class AboutViewer
{
public About View()
=> new About()
{
Nick = "Mih4n",
Name = "Mikhail",
Surname = "Loseu",
}
}