diff --git a/src/assets/styles/About.module.scss b/src/assets/styles/About.module.scss index 63dca84..503869d 100644 --- a/src/assets/styles/About.module.scss +++ b/src/assets/styles/About.module.scss @@ -138,7 +138,7 @@ } .valueText { - color: var(--text-ash); + color: $text-ash; line-height: 1.6; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } @@ -167,7 +167,7 @@ height: 5px; top: 0; left: 0; - background: linear-gradient(to right, var(--accent-dragon), $accent-fire); + background: linear-gradient(to right, $accent-dragon, $accent-fire); border-radius: 8px 8px 0 0; } @@ -209,7 +209,7 @@ position: absolute; width: 3px; height: 100%; - background: linear-gradient(to bottom, $accent-fire, var(--accent-dragon), rgba(255, 100, 0, 0.2)); + background: linear-gradient(to bottom, $accent-fire, $accent-dragon, rgba(255, 100, 0, 0.2)); left: 50%; transform: translateX(-50%); z-index: 1; @@ -221,13 +221,13 @@ width: 100%; } -.timelineItem:nth-child(odd) .timeline-content { +.timelineItem:nth-child(odd) .timelineContent { margin-left: auto; padding-left: 3rem; border-radius: 8px; } -.timelineItem:nth-child(even) .timeline-content { +.timelineItem:nth-child(even) .timelineContent { margin-right: auto; padding-right: 3rem; border-radius: 8px; @@ -242,7 +242,7 @@ top: 20px; left: 50%; transform: translateX(-50%); - box-shadow: var(--glow-effect); + box-shadow: $glow-effect; z-index: 2; } @@ -456,7 +456,7 @@ } .tocLink { - color: var(--text-ash); + color: $text-ash; text-decoration: none; transition: all 0.3s ease; font-size: 0.9rem; @@ -495,7 +495,7 @@ align-items: center; gap: 10px; text-decoration: none; - color: var(--text-ash); + color: $text-ash; transition: color 0.3s ease; } diff --git a/src/data/experienceData.ts b/src/data/experienceData.ts index 4aed6e3..11fb212 100644 --- a/src/data/experienceData.ts +++ b/src/data/experienceData.ts @@ -75,6 +75,11 @@ export const aboutProps: AboutProps = { } ], professionalJourney: [ + { + title: "Student at RzeszĂłw University of Technology", + description: "Specialization: Computer Science", + duration: "2021.10 - 2025.6", + }, { title: "intern software engineer at Opeteam S.A.", description: @@ -84,7 +89,8 @@ export const aboutProps: AboutProps = { - 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 9a760c0..764c841 100644 --- a/src/pages/About.tsx +++ b/src/pages/About.tsx @@ -125,7 +125,7 @@ export const About = () => {
-
+

{value.title}

@@ -156,56 +156,17 @@ export const About = () => {
-
    - {/* Timeline Item 1 */} -
  • -
    -
    -
    2021 - Present
    -

    Lead Systems Engineer

    -

    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 */} -
  • -
    -
    -
    2018 - 2021
    -

    Senior Embedded Developer

    -

    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 */} -
  • -
    -
    -
    2015 - 2018
    -

    Full-Stack Developer

    -

    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 */} -
  • -
    -
    -
    2012 - 2015
    -

    Firmware Engineer

    -

    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 */} -
  • -
    -
    -
    2010 - 2012
    -

    Junior Software Developer

    -

    Began the journey into the digital forge, working on embedded C programming for consumer electronics. Learned the fundamentals of hardware-software integration and real-time systems.

    -
    -
  • +
      + {data.professionalJourney.map((journey, index) => ( +
    • +
      +
      +
      {journey.duration}
      +

      {journey.title}

      +

      {journey.description}

      +
      +
    • + ))}
@@ -213,66 +174,36 @@ export const About = () => { {/* Testimonials Section */} - < section className="py-5" > -
-
-
-

Tales from the Guild

+ {data.testimonials.length > 0 && ( + < 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 +
+
+ {data.testimonials.map((testimonial, index) => ( +
+
+ {testimonial.content} +
+
+
+ {testimonial.author} +
+
+

{testimonial.author}

+
{testimonial.position}
+
+
-
-

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

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
-
-
+ ))}
-
- + )} ); }; \ No newline at end of file