diff --git a/src/assets/styles/About.scss b/src/assets/styles/About.module.scss
similarity index 99%
rename from src/assets/styles/About.scss
rename to src/assets/styles/About.module.scss
index 16eaf90..21a7e2c 100644
--- a/src/assets/styles/About.scss
+++ b/src/assets/styles/About.module.scss
@@ -1,3 +1,5 @@
+@use './variables' as *;
+
.profile-image {
width: 100%;
aspect-ratio: 1/1;
diff --git a/src/data/experienceData.ts b/src/data/experienceData.ts
new file mode 100644
index 0000000..4aed6e3
--- /dev/null
+++ b/src/data/experienceData.ts
@@ -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: [
+
+ ]
+};
diff --git a/src/pages/About.tsx b/src/pages/About.tsx
index 94c6c99..4dbd0c1 100644
--- a/src/pages/About.tsx
+++ b/src/pages/About.tsx
@@ -1,10 +1,45 @@
import { PageHeader } from '../components/PageHeader';
+import { aboutProps } from '../data/experienceData';
+
+import style from '@styles/About.module.scss';
+
+export interface AboutProps {
+ coreValues: CoreValue[];
+ technicalArsenal: TechnicalArsenal[];
+ professionalJourney: ProfessionalJourney[];
+ testimonials: Testimonial[];
+}
+
+export interface CoreValue {
+ title: string;
+ description: string;
+ icon: string;
+}
+
+export interface ProfessionalJourney {
+ title: string;
+ description: string;
+ duration: string;
+}
+
+export interface TechnicalArsenal {
+ title: string;
+ icon: string;
+ skills: string[];
+}
+
+export interface Testimonial {
+ content: string;
+ author: string;
+ position: string;
+}
export const About = () => {
+ const data = aboutProps;
return (
<>
-
Greetings, seeker of digital arcana. I am SecCodeSmith, a master craftsman of code and conductor of silicon. For over a decade, I have been forging robust solutions across the realms of embedded systems, machine learning, and web development.
- +My journey began in the depths of low-level programming, where I learned to bend hardware to my will through carefully crafted instructions. From the arcane energies of microcontrollers to the vast landscapes of cloud architecture, I have honed my skills to create solutions that stand the test of time.
- +What distinguishes my work is the meticulous attention to security and performance. Like a blacksmith who understands that a sword's true value lies not just in its edge but in the integrity of its steel, I craft code that is not merely functional but resilient against the chaotic forces of the digital wilderness.
- +Beyond the technical realms, I am a devoted practitioner of open-source sorcery, contributing to projects that empower others to create and innovate. When not at the forge, I can be found exploring the ancient texts of computer science, delving into new programming languages, or mentoring apprentices on their own journey.
- +{value.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.
Like a finely-honed blade, code should be both effective and efficient. I meticulously optimize every component for maximum speed and minimal resource consumption.
-True mastery is revealed not in complexity but in elegant simplicity. I strive to create solutions that are accessible, maintainable, and beautifully crafted.
-The digital landscape changes with the seasons. I embrace continuous learning and adaptation, integrating new techniques and technologies to forge ever-better solutions.
-Architecting secure IoT solutions for critical infrastructure, combining embedded firmware expertise with cloud integration. Leading a team of 8 engineers across hardware and software disciplines.
Developed firmware for next-generation industrial control systems. Implemented machine learning capabilities on resource-constrained devices, reducing predictive maintenance false positives by 87%.
Created web applications and APIs for data visualization and analysis. Specialized in integrating hardware systems with web interfaces, enabling real-time monitoring of distributed sensor networks.
Designed and implemented firmware for medical devices, focusing on reliability and safety-critical operations. Reduced power consumption by 35% while improving processing performance.
+
-
-
-
+