feat: add About section with core values, technical skills, and testimonials

This commit is contained in:
2025-05-23 18:36:37 +02:00
parent 35c0a17f8a
commit 6ea40432f7
3 changed files with 228 additions and 238 deletions
+92
View File
@@ -0,0 +1,92 @@
import { type AboutProps } from "../pages/About";
export const aboutProps: AboutProps = {
coreValues: [
{
title: "Security by Design",
icon: "fas fa-shield-alt",
description:
"Security is not an afterthought but the very foundation upon which robust systems are built. Every line of code is crafted with defensive principles in mind.",
},
{
icon: "fas fa-tachometer-alt",
title: "Performance Optimization",
description:
"Like a finely-honed blade, code should be both effective and efficient. I meticulously optimize every component for maximum speed and minimal resource consumption.",
},
{
icon: "fas fa-gem",
title: "Elegant Simplicity",
description:
"True mastery is revealed not in complexity but in elegant simplicity. I strive to create solutions that are accessible, maintainable, and beautifully crafted."
},
{
icon: "fas fa-sync-alt",
title: "Continuous Evolution",
description:
"The digital landscape changes with the seasons. I embrace continuous learning and adaptation, integrating new techniques and technologies to forge ever-better solutions."
}
],
technicalArsenal: [
{
icon: "fas fa-microchip",
title: "Embedded Systems",
skills: [
"STM32 microcontroller programming (I2C, SPI, UART)",
"ESP32 wireless solutions",
"Firmware development with C/C++",
"Raspberry Pi and Pico-SDK integration",
"RTOS implementation"
]
},
{
icon: "fas fa-brain",
title: "AI & Data Analysis",
skills: [
"Machine learning with PyTorch",
"Data manipulation with Pandas",
"Predictive modeling via Scikit-learn",
"Computer vision with Scikit-image",
"Edge AI deployment"
]
},
{
icon: "fas fa-window-maximize",
title: "Web Development",
skills: [
"Web Development",
"Backend development with ASP.NET",
"Database management with Entity Framework",
"Frontend frameworks: Blazor, React",
"Responsive design with Bootstrap",
"Python-based web solutions with Django"
]
},
{
icon: "fas fa-server",
title: "DevOps & Infrastructure",
skills: [
"Containerization with Docker",
"Multi-container orchestration via Docker-compose",
"Linux server administration",
"CI/CD pipeline implementation",
"Build system configuration with CMake"
]
}
],
professionalJourney: [
{
title: "intern software engineer at Opeteam S.A.",
description:
`- Performing programming tasks in R&D projects within the product development department,
- Database administration,
- Defining unit tests and manual testing of solutions,
- Selecting technologies for basic problems,
- Documenting the source code (technical documentation).`,
duration: "2022.8 - 2023.4",
}
],
testimonials: [
]
};