From 1656b07225f55d67f21a45343cdf417a706343c3 Mon Sep 17 00:00:00 2001 From: seccodesmith Date: Fri, 16 May 2025 14:57:32 +0200 Subject: [PATCH] Add CSS module import to BlogCard component and restructure Home page skills section --- src/components/BlogCard.tsx | 1 + src/pages/Home.tsx | 246 +++++++++++++++++++++++------------- 2 files changed, 162 insertions(+), 85 deletions(-) diff --git a/src/components/BlogCard.tsx b/src/components/BlogCard.tsx index 23eb7d4..93fb13a 100644 --- a/src/components/BlogCard.tsx +++ b/src/components/BlogCard.tsx @@ -1,4 +1,5 @@ import { Link } from 'react-router-dom'; +import "./BlogCard.module.css" export interface BlogPostProps { id: string; diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index d40877c..9799b81 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -116,96 +116,172 @@ export const Home = () => { {/* Skills Section */}
-
-
-

Technical Arsenal

+
+
+

Technical Arsenal

+
-
-
- {/* Languages Card */} -
-
-
- -

Languages

+
+ {/* Languages Card */} +
+
+
+ +

Languages

+
+
+
    +
  • + + C/C++ +
  • +
  • + + Python +
  • +
  • + + .NET +
  • +
+
+
-
-
    -
  • - - C/C++ -
  • -
  • - - Python -
  • -
  • - - .NET -
  • -
+ + {/* Embedded Systems Card */} +
+
+
+ +

Embedded Systems

+
+
+
    +
  • + + STM32 (I2C, SPI, UART) +
  • +
  • + + ESP32 +
  • +
  • + + Pico-SDK +
  • +
+
+
+
+ + {/* Data & ML Card */} +
+
+
+ +

Data & ML

+
+
+
    +
  • + + Pandas +
  • +
  • + + Scikit-learn +
  • +
  • + + Scikit-image +
  • +
  • + + PyTorch +
  • +
+
+
+
+ + {/* Web Development Card */} +
+
+
+ +

Web Development

+
+
+
    +
  • + + ASP.NET +
  • +
  • + + Entity Framework +
  • +
  • + + Blazor +
  • +
  • + + React +
  • +
  • + + Bootstrap +
  • +
  • + + Django +
  • +
+
+
+
+ + {/* DevOps Card */} +
+
+
+ +

DevOps & Systems

+
+
+
    +
  • + + Docker +
  • +
  • + + Docker-compose +
  • +
  • + + Linux CLI +
  • +
  • + + CMake +
  • +
  • + + Windows +
  • +
  • + + Linux +
  • +
+
+
-
- - {/* Embedded Systems Card */} -
-
-
- -

Embedded Systems

-
-
-
    -
  • - - STM32 (I2C, SPI, UART) -
  • -
  • - - ESP32 -
  • -
  • - - Pico-SDK -
  • -
-
-
-
- - {/* Data & ML Card */} -
-
-
- -

Data & ML

-
-
-
    -
  • - - Pandas -
  • -
  • - - Scikit-learn -
  • -
  • - - Scikit-image -
  • -
  • - - PyTorch -
  • -
-
-
-
-
-
+ ); }; \ No newline at end of file -- 2.52.0