import Button from "@/_components/Button"; import { ReactElement } from "react"; const experience: WorkplaceEntry[] = [ { place: "Nordcloud, Saint-Petersburg, RU", title: "Software Engineer", summary: "Working on MightyCall cloud call center product", year: "2021", description: <>

Implementing new features and fixing bugs in large-scale distributed VoIP system with ASP.NET and Angular

}, { place: "Quantorium, Saint-Petersburg, RU", title: "System administrator", summary: "Administration of school's IT infrastructure", year: "2021", description: }, { place: "A-rial, Saint-Petersburg, RU", title: "Software Engineer", summary: "Legacy software support and DevOps", year: "2023", description: <>

Supporting legacy WLAN controller system, as well as maintaining company's IT infrastructure

Stack: .NET, React, Golang, Vue, Mongo

}, { place: "A-rial, Saint-Petersburg, RU", title: "Lead Software Engineer", summary: "Working on software for RF Analyzer hardware", year: "2024", description: <>

Creating, desiging and implementing RF analyzer software, as well as participating in hardware design.

Stack: ASP.NET (RESTFul API), React, Linux

}, { place: "A-rial, Saint-Petersburg, RU", title: "Lead System Architect", summary: "Working on WLAN Controller system", year: "2025", description: <>

Designing and implementing large-scale distributed WLAN controller system

Stack: React, ASP.NET (RESTFul API), MongoDB, Postges (EF Core), RabbitMQ (MassTransit), MQTT, Docker.

}, { place: "Your company", title: "Here", summary: "Working on new and exciting projects", description: }, ]; export default experience; export type WorkplaceEntry = { year?: string; place?: string; title: string; summary?: string; description?: ReactElement; };