From 6ea40432f75ac7841f6fa994160b32be5f07f558 Mon Sep 17 00:00:00 2001 From: seccodesmith Date: Fri, 23 May 2025 18:36:37 +0200 Subject: [PATCH] feat: add About section with core values, technical skills, and testimonials --- .../styles/{About.scss => About.module.scss} | 2 + src/data/experienceData.ts | 92 +++++ src/pages/About.tsx | 372 +++++++----------- 3 files changed, 228 insertions(+), 238 deletions(-) rename src/assets/styles/{About.scss => About.module.scss} (99%) create mode 100644 src/data/experienceData.ts 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 ( <> - @@ -13,7 +48,7 @@ export const About = () => {
-

The Master Behind the Mask

+

The Master Behind the Mask

SecCodeSmith
@@ -21,13 +56,13 @@ export const About = () => {

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.

- +
- + {/* Core Values Section */}
-

Forging Principles

+

Forging Principles

-
-
-
-
- +
+ {data.coreValues.map((value, index) => ( +
+
+
+ +
+

{value.title}

+

{value.description}

-

Security by Design

-

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.

-
- -
-
-
- -
-

Performance Optimization

-

Like a finely-honed blade, code should be both effective and efficient. I meticulously optimize every component for maximum speed and minimal resource consumption.

-
-
- -
-
-
- -
-

Elegant Simplicity

-

True mastery is revealed not in complexity but in elegant simplicity. I strive to create solutions that are accessible, maintainable, and beautifully crafted.

-
-
- -
-
-
- -
-

Continuous Evolution

-

The digital landscape changes with the seasons. I embrace continuous learning and adaptation, integrating new techniques and technologies to forge ever-better solutions.

-
-
+ ))} +
- + {/* Technical Expertise Section */}
-

Arsenal of Expertise

+

Arsenal of Expertise

-
-
+ {data.technicalArsenal.map((value, index) => ( +
- +
-

Embedded Systems

+

${value.title}

    -
  • - - STM32 microcontroller programming (I2C, SPI, UART) -
  • -
  • - - ESP32 wireless solutions -
  • -
  • - - Firmware development with C/C++ -
  • -
  • - - Raspberry Pi and Pico-SDK integration -
  • -
  • - - RTOS implementation -
  • + {value.skills.map((skillItem, skillIndex) => ( +
  • + + {skillItem} +
  • + ))}
-
- -
-
-
-
- -
-

AI & Data Analysis

-
-
    -
  • - - Machine learning with PyTorch -
  • -
  • - - Data manipulation with Pandas -
  • -
  • - - Predictive modeling via Scikit-learn -
  • -
  • - - Computer vision with Scikit-image -
  • -
  • - - Edge AI deployment -
  • -
-
-
- -
-
-
-
- -
-

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 -
  • -
-
-
- -
-
-
-
- -
-

DevOps & Infrastructure

-
-
    -
  • - - Containerization with Docker -
  • -
  • - - Multi-container orchestration via Docker-compose -
  • -
  • - - Linux server administration -
  • -
  • - - CI/CD pipeline implementation -
  • -
  • - - Build system configuration with CMake -
  • -
-
-
-
+ ))} +
-
- - {/* Professional Journey Section */} -
+
+ + + {/* Professional Journey Section */ } + < section className = "py-5 bg-dark" >
-

The Smith's Journey

+

The Smith's Journey

@@ -268,7 +164,7 @@ export const About = () => {

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.

- + {/* Timeline Item 2 */}
  • @@ -278,7 +174,7 @@ export const About = () => {

    Developed firmware for next-generation industrial control systems. Implemented machine learning capabilities on resource-constrained devices, reducing predictive maintenance false positives by 87%.

  • - + {/* Timeline Item 3 */}
  • @@ -288,7 +184,7 @@ export const About = () => {

    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.

  • - + {/* Timeline Item 4 */}
  • @@ -298,7 +194,7 @@ export const About = () => {

    Designed and implemented firmware for medical devices, focusing on reliability and safety-critical operations. Reduced power consumption by 35% while improving processing performance.

  • - + {/* Timeline Item 5 */}
  • @@ -312,69 +208,69 @@ export const About = () => {
  • - - - {/* Testimonials Section */} -
    -
    -
    -
    -

    Tales from the Guild

    +
    + + {/* Testimonials Section */ } + < section className = "py-5" > +
    +
    +
    +

    Tales from the Guild

    +
    +
    +
    +
    + {/* Testimonial 1 */} +
    +
    + "Working with SecCodeSmith transformed our approach to IoT security. Their expertise in both embedded systems and network security allowed us to create a solution that our clients trust implicitly. The attention to detail and foresight regarding potential vulnerabilities saved us from what could have been catastrophic security incidents." +
    +
    +
    + Alexandra Foster +
    +
    +

    Alexandra Foster

    +
    CTO, ConnectedWorld Technologies
    +
    -
    -
    - {/* Testimonial 1 */} -
    -
    - "Working with SecCodeSmith transformed our approach to IoT security. Their expertise in both embedded systems and network security allowed us to create a solution that our clients trust implicitly. The attention to detail and foresight regarding potential vulnerabilities saved us from what could have been catastrophic security incidents." -
    -
    -
    - Alexandra Foster -
    -
    -

    Alexandra Foster

    -
    CTO, ConnectedWorld Technologies
    -
    -
    + + {/* Testimonial 2 */} +
    +
    + "The custom firmware developed by SecCodeSmith for our industrial controllers exceeded all expectations. Not only was the code incredibly efficient, but the documentation was meticulous—something rare in our industry. Three years later, we're still building upon that solid foundation with minimal issues." +
    +
    +
    + Marcus Chen
    - - {/* Testimonial 2 */} -
    -
    - "The custom firmware developed by SecCodeSmith for our industrial controllers exceeded all expectations. Not only was the code incredibly efficient, but the documentation was meticulous—something rare in our industry. Three years later, we're still building upon that solid foundation with minimal issues." -
    -
    -
    - Marcus Chen -
    -
    -

    Marcus Chen

    -
    Lead Engineer, Precision Automation Inc.
    -
    -
    +
    +

    Marcus Chen

    +
    Lead Engineer, Precision Automation Inc.
    - - {/* Testimonial 3 */} -
    -
    - "I've collaborated with numerous developers over my 20-year career, but SecCodeSmith stands apart for their ability to bridge the gap between theoretical concepts and practical implementation. Their machine learning models for anomaly detection operate efficiently even on our limited hardware, which competitors claimed was impossible." -
    -
    -
    - Sophia Rodriguez -
    -
    -

    Sophia Rodriguez

    -
    Research Director, Advanced Sensing Lab
    -
    -
    +
    +
    + + {/* Testimonial 3 */} +
    +
    + "I've collaborated with numerous developers over my 20-year career, but SecCodeSmith stands apart for their ability to bridge the gap between theoretical concepts and practical implementation. Their machine learning models for anomaly detection operate efficiently even on our limited hardware, which competitors claimed was impossible." +
    +
    +
    + Sophia Rodriguez +
    +
    +

    Sophia Rodriguez

    +
    Research Director, Advanced Sensing Lab
    - +
    +
    + ); }; \ No newline at end of file