Compare commits
6 Commits
fe463c4fcb
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 2cfdd61cc2 | |||
| d9bdf12328 | |||
| d00712c287 | |||
| 59dd998a5d | |||
| 8d440c1993 | |||
| b855cc9127 |
@@ -1,2 +1,151 @@
|
||||
# seccodesmith-frontend
|
||||
# SecCodeSmith Frontend Portfolio
|
||||
|
||||

|
||||
|
||||
A modern portfolio website with a unique fantasy blacksmith and dragon theme, showcasing my development skills and projects.
|
||||
|
||||
## 🐉 About
|
||||
|
||||
This portfolio represents my journey as a developer, designed with the aesthetic of a fantasy blacksmith working alongside dragons. The site combines modern web technologies with creative storytelling to create an engaging user experience.
|
||||
|
||||
**Live Demo**: [https://seccodesmith.pl](https://seccodesmith.pl)
|
||||
|
||||
## 🛠️ Built With
|
||||
|
||||
- **[Vite](https://vitejs.dev/)** - Next Generation Frontend Tooling
|
||||
- **[React](https://reactjs.org/)** - JavaScript library for building user interfaces
|
||||
- **[TypeScript](https://www.typescriptlang.org/)** - JavaScript with syntax for types
|
||||
- **[SCSS](https://sass-lang.com/)** - CSS preprocessor for better styling
|
||||
|
||||
## 📋 Prerequisites
|
||||
|
||||
Before you begin, ensure you have the following installed:
|
||||
- **Node.js** (v16.0.0 or higher)
|
||||
- **npm** (v8.0.0 or higher) or **yarn** (v1.22.0 or higher)
|
||||
|
||||
You can check your versions by running:
|
||||
```bash
|
||||
node --version
|
||||
npm --version
|
||||
```
|
||||
|
||||
## 🚀 Getting Started
|
||||
|
||||
### Installation
|
||||
|
||||
1. Clone the repository:
|
||||
```bash
|
||||
git clone https://git.seccodesmith.pl/seccodesmith/seccodesmith-frontend.git
|
||||
cd seccodesmith-frontend
|
||||
```
|
||||
|
||||
2. Install dependencies:
|
||||
```bash
|
||||
npm install
|
||||
# or
|
||||
yarn install
|
||||
```
|
||||
|
||||
### Running the Project
|
||||
|
||||
#### Development Mode
|
||||
To run the project in development mode with hot-reload:
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
```
|
||||
|
||||
The application will be available at `http://localhost:5173` (default Vite port).
|
||||
|
||||
#### Production Build
|
||||
To build the project for production:
|
||||
```bash
|
||||
npm run build
|
||||
# or
|
||||
yarn build
|
||||
```
|
||||
|
||||
#### Preview Production Build
|
||||
To preview the production build locally:
|
||||
```bash
|
||||
npm run preview
|
||||
# or
|
||||
yarn preview
|
||||
```
|
||||
|
||||
## 📁 Project Structure
|
||||
|
||||
```
|
||||
seccodesmith-frontend/
|
||||
├── src/
|
||||
│ ├── assets/ # Images, fonts, and other static assets
|
||||
│ ├── components/ # React components
|
||||
│ ├── styles/ # SCSS files
|
||||
│ ├── pages/ # Page components
|
||||
│ ├── utils/ # Utility functions
|
||||
│ ├── App.tsx # Main App component
|
||||
│ └── main.tsx # Application entry point
|
||||
├── public/ # Public static files
|
||||
├── index.html # HTML template
|
||||
├── vite.config.ts # Vite configuration
|
||||
├── tsconfig.json # TypeScript configuration
|
||||
├── package.json # Project dependencies and scripts
|
||||
└── README.md # Project documentation
|
||||
```
|
||||
|
||||
## ✨ Features
|
||||
|
||||
- Responsive design that works on all devices
|
||||
- Interactive animations and transitions
|
||||
- Dark/Light theme toggle
|
||||
- Project showcase with detailed descriptions
|
||||
- Contact form integration
|
||||
- Performance optimized with Vite
|
||||
|
||||
## 🧪 Available Scripts
|
||||
|
||||
- `npm run dev` - Start development server
|
||||
- `npm run build` - Build for production
|
||||
- `npm run preview` - Preview production build
|
||||
- `npm run lint` - Run ESLint
|
||||
- `npm run type-check` - Run TypeScript compiler check
|
||||
|
||||
## 🎨 Customization
|
||||
|
||||
To customize the portfolio for your own use:
|
||||
|
||||
1. Update personal information in `src/data/personal.ts`
|
||||
2. Replace projects in `src/data/projects.ts`
|
||||
3. Modify color schemes in `src/styles/variables.scss`
|
||||
4. Update images in `src/assets/`
|
||||
|
||||
## 📄 License
|
||||
|
||||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
||||
|
||||
## 🤝 Contributing
|
||||
|
||||
While this is a personal portfolio project, suggestions and feedback are welcome! Feel free to:
|
||||
|
||||
1. Fork the repository
|
||||
2. Create a feature branch (`git checkout -b feature/AmazingFeature`)
|
||||
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
|
||||
4. Push to the branch (`git push origin feature/AmazingFeature`)
|
||||
5. Open a Pull Request
|
||||
|
||||
## 📬 Contact
|
||||
|
||||
**SecCodeSmith** - [contact@seccodesmith.pl](mailto:contact@seccodesmith.pl)
|
||||
|
||||
Project Link: [https://git.seccodesmith.pl/seccodesmith/seccodesmith-frontend](https://git.seccodesmith.pl/seccodesmith/seccodesmith-frontend)
|
||||
|
||||
## 🙏 Acknowledgments
|
||||
|
||||
- Inspiration from fantasy blacksmith and dragon themes
|
||||
- [React Icons](https://react-icons.github.io/react-icons/) for icon library
|
||||
- [Vite Documentation](https://vitejs.dev/guide/) for build tool guidance
|
||||
|
||||
---
|
||||
|
||||
⚔️ Forged with passion by SecCodeSmith 🐲
|
||||
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"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": "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": "- Performing programming tasks in R&D projects within the product development department,\n - Database administration, \n - Defining unit tests and manual testing of solutions, \n - Selecting technologies for basic problems, - Documenting the source code (technical documentation)., \n",
|
||||
"duration": "2022.8 - 2023.4"
|
||||
}
|
||||
|
||||
],
|
||||
"testimonials": [
|
||||
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
[
|
||||
{
|
||||
"id": "1",
|
||||
"slug": "StartOFJurney",
|
||||
"title": "Something ends, something begins.",
|
||||
"excerpt": "",
|
||||
"image": "images/Begining.jpg",
|
||||
"category": "Story",
|
||||
"date": "27-05-2025",
|
||||
"author": "SecCodeSmith (Jakub)",
|
||||
"commentCount": 0,
|
||||
"readTime": "10m",
|
||||
"featured": true,
|
||||
"tags": [
|
||||
"journey"
|
||||
],
|
||||
"content": "# I created this blog as the start of building my professional image, \n a place to document my projects and share my experiences. It's also a personal challenge for me. \n I am about to finish my studies and step into a new chapter of my professional life. \n On this blog, I will describe my projects and the lessons I've learned along the way. \n My first project will be creating my own website, featuring a blog, information about me, and descriptions of my work. \n See you soon!"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"email": "forge@seccodesmith.pl",
|
||||
"businessEmail": "business@seccodesmith.pl",
|
||||
"socialLinks": [
|
||||
{ "platform": "LinkedIn", "url": "https://www.linkedin.com/in/jakub-berechowski", "icon": "fab fa-linkedin" },
|
||||
{ "platform": "GitHub", "url": "https://github.com/seccodesmith", "icon": "fab fa-github" },
|
||||
{ "platform": "Facebook", "url": "https://www.facebook.com/people/Seccodesmith/61575058536717/", "icon": "fab fa-facebook" }
|
||||
],
|
||||
"questionsAndAnswers": [
|
||||
{ "question": "What is your typical project timeline?", "answer": "Project timelines vary based on complexity and scope. Small projects typically take 2-4 weeks, medium-sized projects 1-2 months, and larger enterprise solutions 3-6 months. I provide detailed timeline estimates during the initial consultation, and maintain transparent communication about progress throughout the development cycle." },
|
||||
{ "question": "How does your collaboration process work?", "answer": "My collaboration process consists of five phases: initial consultation, requirements gathering, design and planning, implementation, and testing/deployment. I use agile methodologies with regular check-ins to ensure your vision is being realized. Communication is maintained through your preferred channels (email, Slack, etc.), and you\"ll have access to development milestones through shared repositories and project management tools." },
|
||||
{ "question": "What are your payment terms and methods?", "answer": "I typically work with a milestone-based payment structure: 30% upfront to begin work, 30% at the midpoint after key deliverables are approved, and 40% upon project completion. For longer projects, we can establish additional milestones. I accept bank transfers, PayPal, and cryptocurrency payments. All payment terms are clearly outlined in the project contract before work begins."},
|
||||
{ "question": "Who owns the code and deliverables?", "answer": "Upon final payment, you receive full ownership rights to all custom code and deliverables created specifically for your project. I maintain no proprietary claim to custom solutions developed for clients. For projects that incorporate open-source components, those elements remain under their original licenses, and I provide clear documentation of all third-party code used in your project." },
|
||||
{ "question": "Do you offer support and maintenance?", "answer": "Yes, I offer a 30-day warranty period for all projects, during which bug fixes and minor adjustments are covered at no additional cost. For ongoing support, I provide maintenance packages that include regular updates, security patches, and priority response times. These can be tailored to your specific needs and budget, whether you require occasional support or dedicated monthly maintenance."}
|
||||
],
|
||||
"MapIframeUrl": "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d82077.2903513271!2d21.9433946!3d50.0411861!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x473cfae3cc14d449%3A0xd2240d31b33eb2ed!2zUnplc3rDs3c!5e0!3m2!1sen!2spl!4v1651813309336!5m2!1sen!2spl",
|
||||
"phone": ""
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
[
|
||||
{
|
||||
"id": "SecCodeSmithFrontend",
|
||||
"title": "SecCodeSmith Portfolio Page - Frontend",
|
||||
"description": "A modern, responsive portfolio page showcasing my projects, skills, and blog posts. Built with React and styled-components for a sleek user interface.",
|
||||
"image": "/images/SecCodeSmithFrontProj/Main.png",
|
||||
"category": ["Web"],
|
||||
"featured": true,
|
||||
"technologies": [
|
||||
{ "name": "React", "icon": "devicon-react-original tech-icon" },
|
||||
{ "name": "TypeScript", "icon": "devicon-typescript-plain tech-icon" },
|
||||
{ "name": "SCSS", "icon": "devicon-sass-original tech-icon" },
|
||||
{ "name": "Vite", "icon": "devicon-vitejs-plain tech-icon" }
|
||||
],
|
||||
"links": {
|
||||
"github": "https://github.com/SecCodeSmith/",
|
||||
"demo": "https://seccodesmith.pl"
|
||||
},
|
||||
"projectDetails": {
|
||||
"descriptions": [
|
||||
"This portfolio page is designed to highlight my skills and projects in a visually appealing way. It features a clean layout, smooth animations, and responsive design for optimal viewing on all devices.",
|
||||
"The project utilizes React for building the user interface, TypeScript for type safety, and SCSS for styling. The use of Vite ensures fast development and build times."
|
||||
],
|
||||
"startDate": "12-05-2025",
|
||||
"endDate": "",
|
||||
"dateFormatted": "DD MMMM YYYY",
|
||||
"role": "Frontend Developer",
|
||||
"status": "In Progress",
|
||||
"keyFeatures": [
|
||||
"Responsive design with mobile-first approach",
|
||||
"Dynamic project showcase with filtering options",
|
||||
"Interactive blog section with latest posts"
|
||||
],
|
||||
"gallery": ["/images/SecCodeSmithFrontProj/1.png", "/images/SecCodeSmithFrontProj/2.png", "/images/SecCodeSmithFrontProj/3.png", "/images/SecCodeSmithFrontProj/4.png" ],
|
||||
"fullTechStack": [
|
||||
{ "name": "React", "icons": "devicon-react-original" },
|
||||
{ "name": "TypeScript", "icons": "devicon-typescript-plain" },
|
||||
{ "name": "SCSS", "icons": "devicon-sass-original" },
|
||||
{ "name": "Vite", "icons": "devicon-vitejs-plain" }
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,58 @@
|
||||
[
|
||||
{
|
||||
"categoryIcon": "fa-code",
|
||||
"categoryTitle": "Languages",
|
||||
"skills": [
|
||||
{ "name": "C/C++", "icon": "devicon-cplusplus-plain" },
|
||||
{ "name": "Python", "icon": "devicon-python-plain" },
|
||||
{ "name": ".NET", "icon": "devicon-dotnetcore-plain" },
|
||||
{ "name": "C#", "icon": "devicon-csharp-plain" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryIcon": "fa-microchip",
|
||||
"categoryTitle": "Embedded Systems",
|
||||
"skills": [
|
||||
{ "name": "STM32 (I2C, SPI, UART)", "icon": "fas fa-microchip" },
|
||||
{ "name": "ESP32", "icon": "fas fa-wifi" },
|
||||
{ "name": "Pico-SDK", "icon": "fas fa-memory" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryIcon": "fa-brain",
|
||||
"categoryTitle": "Data & ML",
|
||||
"skills": [
|
||||
{ "name": "Pandas", "icon": "devicon-pandas-plain" },
|
||||
{ "name": "Scikit-learn", "icon": "devicon-scikitlearn-plain" },
|
||||
{ "name": "Scikit-image", "icon": "fas fa-image" },
|
||||
{ "name": "PyTorch", "icon": "devicon-pytorch-plain" },
|
||||
{ "name": "OpenCV", "icon": "devicon-opencv-plain" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryIcon": "fas fa-window-maximize",
|
||||
"categoryTitle": "Web Development",
|
||||
"skills": [
|
||||
{ "name": "ASP.NET Core", "icon": "devicon-dot-net-plain" },
|
||||
{ "name": "Entity Framework", "icon": "fas fa-database" },
|
||||
{ "name": "Blazor", "icon": "devicon-dotnetcore-plain" },
|
||||
{ "name": "React", "icon": "devicon-react-original" },
|
||||
{ "name": "Django", "icon": "devicon-django-plain" },
|
||||
{ "name": "Bootstrap", "icon": "devicon-bootstrap-plain" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"categoryIcon": "fas fa-cloud",
|
||||
"categoryTitle": "DevOps & Systems",
|
||||
"skills": [
|
||||
{ "name": "Docker", "icon": "devicon-docker-plain" },
|
||||
{ "name": "Docker-compose", "icon": "fas fa-layer-group" },
|
||||
{ "name": "Linux CLI", "icon": "devicon-bash-plain" },
|
||||
{ "name": "Git", "icon": "devicon-git-plain" },
|
||||
{ "name": "CI/CD", "icon": "fas fa-cogs" },
|
||||
{ "name": "Cmake", "icon": "devicon-cmake-plain" },
|
||||
{ "name": "Linux", "icon": "devicon-linux-plain" },
|
||||
{ "name": "Jenkins", "icon": "devicon-jenkins-plain" }
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"icon": "fab fa-github",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"icon": "fab fa-linkedin",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"icon": "fab fa-twitter",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"icon": "fab fa-discord",
|
||||
"url": ""
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-envelope",
|
||||
"url": ""
|
||||
}
|
||||
]
|
||||
|
After Width: | Height: | Size: 518 KiB |
|
After Width: | Height: | Size: 134 KiB |
|
After Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 847 KiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
@@ -11,7 +11,7 @@ export const BlogCard: React.FC<BlogCardProps> = ({ post }) => {
|
||||
return (
|
||||
<div className={`card ${styles.card} ${post.featured ? styles.featuredCard : ''}`}>
|
||||
<div className="position-relative">
|
||||
<img src={post.image} className={`card-img-top ${post.featured ? styles.featuredImg : ''}`} alt={post.title} />
|
||||
<img src={`${import.meta.env.BASE_URL}${post.image}`} className={`card-img-top ${post.featured ? styles.featuredImg : ''}`} alt={post.title} />
|
||||
<div className={styles.categoryBadge}>{post.category}</div>
|
||||
|
||||
{post.featured && (
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
import {socialLinkData} from '../data/socialLinkData'
|
||||
export interface socialLink {
|
||||
icon: string;
|
||||
url: string;
|
||||
}
|
||||
import type {SocialLink} from '../untils/SocialLink'
|
||||
|
||||
|
||||
export const Footer = () => {
|
||||
const socialLinks: socialLink[] = socialLinkData;
|
||||
const socialLinks: SocialLink[] = socialLinkData;
|
||||
|
||||
const currentYear = new Date().getFullYear()
|
||||
return (
|
||||
|
||||
@@ -124,7 +124,7 @@ export const ProjectCard: React.FC<ProjectCardProps> = ({ project, onOpenDetails
|
||||
onMouseEnter={() => setHovered(true)}
|
||||
onMouseLeave={() => setHovered(false)}>
|
||||
<div className={`position-relative`}>
|
||||
<img src={project.image} className={style.cardImgTop} alt={project.title} />
|
||||
<img src={`${import.meta.env.BASE_URL}${project.image}`} className={style.cardImgTop} alt={project.title} />
|
||||
<CategoryBadge category={project.category} />
|
||||
</div>
|
||||
<div className={`card-body d-flex flex-column ${style.cardBody}`}>
|
||||
|
||||
@@ -1,16 +1,7 @@
|
||||
import styles from '@styles/SkillCard.module.scss';
|
||||
import React from 'react';
|
||||
|
||||
export interface Skill {
|
||||
name: string;
|
||||
icon: React.ReactNode; // Or string if using CSS classes for icons
|
||||
}
|
||||
|
||||
export interface SkillCardProps {
|
||||
categoryTitle: string;
|
||||
categoryIcon: React.ReactNode; // Or string
|
||||
skills: Skill[];
|
||||
}
|
||||
import type {SkillCardProps} from '../untils/SkillCardProps';
|
||||
|
||||
const SkillCard: React.FC<SkillCardProps> = ({ categoryTitle, categoryIcon, skills }) => {
|
||||
return (
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
import type {AboutProps} from '../untils/AboutProps'
|
||||
|
||||
const url = `${import.meta.env.BASE_URL}data/AboutProps.json`;
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error(`Failed to fetch about props: ${res.status}`);
|
||||
|
||||
export const aboutProps: AboutProps = await res.json();
|
||||
@@ -1,131 +1,7 @@
|
||||
import type {BlogPostProps} from '../untils/BlogPostProps'
|
||||
|
||||
export const blogPostsData: BlogPostProps[] = [
|
||||
{
|
||||
id: "1",
|
||||
slug: "summoning-digital-entities-stm32-techniques",
|
||||
title: "Summoning Digital Entities: Advanced STM32 Techniques for IoT Communication",
|
||||
excerpt: "Delve into the arcane arts of STM32 microcontroller programming as we explore advanced techniques for establishing robust communication between IoT devices. This comprehensive guide reveals how to optimize I2C, SPI, and UART protocols for maximum efficiency in your embedded systems projects.",
|
||||
image: "/images/blog/stm32-communication.jpg",
|
||||
category: "Embedded Systems",
|
||||
date: "May 5, 2025",
|
||||
author: "SecCodeSmith",
|
||||
commentCount: 12,
|
||||
readTime: "15 min read",
|
||||
featured: true,
|
||||
tags: ["STM32", "Embedded", "IoT", "Communication Protocols"],
|
||||
content: `
|
||||
In the digital forge where hardware meets software, the STM32 microcontroller family stands as a powerful conduit for summoning digital entities into our physical realm. Today, we shall delve into advanced techniques for establishing robust communication between these entities through the mystical arts of embedded systems programming.
|
||||
|
||||
The realm of IoT demands reliable, efficient communication protocols that can withstand the chaotic nature of real-world environments. Through careful implementation and optimization of the STM32's communication peripherals, we can craft resilient connections that bridge the gap between digital and physical domains.
|
||||
|
||||
# The Three Elemental Protocols: I2C, SPI, and UART
|
||||
|
||||
Before we forge ahead into advanced territory, let us briefly recall the elemental forces at our disposal. Each protocol serves as a channel through which our digital entities communicate, each with its unique strengths and limitations:
|
||||
* **I2C (Inter-Integrated Circuit)** - A two-wire interface requiring minimal physical connections, ideal for communication with multiple peripheral devices over short distances.
|
||||
* **SPI (Serial Peripheral Interface)** - A faster, full-duplex protocol with dedicated select lines for each peripheral, allowing simultaneous transmission and reception of data.
|
||||
* **UART (Universal Asynchronous Receiver-Transmitter)** - A simple two-wire asynchronous interface, perfect for direct device-to-device communication without a shared clock.
|
||||
const url = `${import.meta.env.BASE_URL}data/BlogPosts.json`;
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error(`Failed to fetch blog posts: ${res.status}`);
|
||||
|
||||
`
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
slug: "forging-neural-networks-pytorch-blacksmith-approach",
|
||||
title: "Forging Neural Networks with PyTorch: A Blacksmith's Approach",
|
||||
excerpt: "Learn how to craft powerful neural networks using PyTorch, approaching the process with the precision and artistry of a master blacksmith. This tutorial combines theory with practical implementation.",
|
||||
image: "/images/blog/neural-networks-pytorch.jpg",
|
||||
category: "Machine Learning",
|
||||
date: "April 28, 2025",
|
||||
author: "SecCodeSmith",
|
||||
commentCount: 8,
|
||||
readTime: "12 min read",
|
||||
tags: ["PyTorch", "Machine Learning", "Neural Networks", "Python"],
|
||||
content: `
|
||||
<p>The art of forging neural networks requires both scientific precision and creative intuition—much like the work of a master blacksmith. In this guide, we'll explore how to craft robust neural network architectures using PyTorch, one of the most flexible deep learning frameworks available.</p>
|
||||
|
||||
<h2>Preparing the Forge: Setting Up Your PyTorch Environment</h2>
|
||||
|
||||
<p>Before we begin crafting our neural networks, we need to prepare our digital forge with the proper tools and materials...</p>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
slug: "dark-arts-memory-management-cpp",
|
||||
title: "The Dark Arts of Memory Management in C++",
|
||||
excerpt: "Explore the shadowy realm of manual memory management in C++. From smart pointers to custom allocators, master techniques that will prevent memory leaks and boost performance.",
|
||||
image: "/images/blog/cpp-memory.jpg",
|
||||
category: "C++",
|
||||
date: "April 22, 2025",
|
||||
author: "SecCodeSmith",
|
||||
commentCount: 15,
|
||||
readTime: "18 min read",
|
||||
tags: ["C++", "Memory Management", "Performance", "Smart Pointers"],
|
||||
content: `
|
||||
<p>Memory management in C++ is often viewed as a mysterious and perilous art, filled with potential hazards for the unwary programmer. Yet, mastering this art grants you unparalleled control over your program's resources and performance.</p>
|
||||
|
||||
<h2>The Ancient Runes: Raw Pointers and Manual Allocation</h2>
|
||||
|
||||
<p>At the foundation of C++ memory management lie raw pointers and manual allocation through the new and delete operators...</p>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
slug: "docker-containment-spells-isolating-digital-entities",
|
||||
title: "Docker Containment Spells: Isolating Digital Entities",
|
||||
excerpt: "Master the containment of digital entities with Docker. This guide covers advanced containerization techniques for creating isolated, reproducible environments for your applications.",
|
||||
image: "/images/blog/docker-containers.jpg",
|
||||
category: "DevOps",
|
||||
date: "April 15, 2025",
|
||||
author: "SecCodeSmith",
|
||||
commentCount: 6,
|
||||
readTime: "14 min read",
|
||||
tags: ["Docker", "Containerization", "DevOps", "Microservices"],
|
||||
content: `
|
||||
<p>In the realm of modern software development, Docker has emerged as a powerful tool for containing and isolating digital entities. Like a master sorcerer binding spirits, Docker allows us to encapsulate applications and their dependencies into sealed containers, ensuring consistent behavior across different environments.</p>
|
||||
|
||||
<h2>The Fundamentals of Container Magic</h2>
|
||||
|
||||
<p>At its core, Docker utilizes Linux kernel features like namespaces and control groups to create isolated environments that share the host's OS kernel but are otherwise separated from one another...</p>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
slug: "blazor-incantations-building-reactive-web-uis-dotnet",
|
||||
title: "Blazor Incantations: Building Reactive Web UIs with .NET",
|
||||
excerpt: "Harness the power of Blazor to create dynamic, responsive web interfaces using C# and .NET. Learn component-based architecture and state management for modern web applications.",
|
||||
image: "/images/blog/blazor-web.jpg",
|
||||
category: "Web Dev",
|
||||
date: "April 8, 2025",
|
||||
author: "SecCodeSmith",
|
||||
commentCount: 9,
|
||||
readTime: "16 min read",
|
||||
tags: ["Blazor", ".NET", "Web Development", "C#"],
|
||||
content: `
|
||||
<p>Blazor represents a paradigm shift in web development, allowing .NET developers to craft rich, interactive web applications using C# instead of JavaScript. This modern framework brings the power and elegance of .NET to the browser, opening new possibilities for web development.</p>
|
||||
|
||||
<h2>Understanding the Blazor Magic</h2>
|
||||
|
||||
<p>Blazor comes in two flavors: Blazor WebAssembly, which runs directly in the browser via WebAssembly, and Blazor Server, which executes on the server and communicates with the client via SignalR...</p>
|
||||
`
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
slug: "esp32-ethereal-connections-wireless-sensor-network",
|
||||
title: "ESP32 Ethereal Connections: Building a Wireless Sensor Network",
|
||||
excerpt: "Create a mesh of interconnected ESP32 devices that communicate wirelessly. This tutorial covers WiFi, Bluetooth, and custom RF protocols for building resilient IoT systems.",
|
||||
image: "/images/blog/esp32-network.jpg",
|
||||
category: "IoT",
|
||||
date: "March 30, 2025",
|
||||
author: "SecCodeSmith",
|
||||
commentCount: 11,
|
||||
readTime: "20 min read",
|
||||
tags: ["ESP32", "IoT", "Wireless", "Sensor Networks"],
|
||||
content: `
|
||||
<p>The ESP32 microcontroller has revolutionized the world of IoT with its powerful wireless capabilities, making it the perfect foundation for building ethereal connections between sensors and systems. In this guide, we'll explore how to craft a resilient wireless sensor network using these versatile devices.</p>
|
||||
|
||||
<h2>The Mystical Properties of ESP32</h2>
|
||||
|
||||
<p>Before diving into network architecture, let's examine what makes the ESP32 uniquely suited for wireless sensor networks. With dual-core processors, integrated WiFi and Bluetooth, and numerous GPIO pins...</p>
|
||||
`
|
||||
}
|
||||
];
|
||||
export const blogPostsData: BlogPostProps[] = await res.json();
|
||||
@@ -1,20 +1,7 @@
|
||||
import type {ContactProps} from '../untils/ContactProps'
|
||||
|
||||
export const contactData: ContactProps = {
|
||||
email: 'forge@seccodesmith.pl',
|
||||
businessEmail: 'business@seccodesmith.pl',
|
||||
socialLinks: [
|
||||
{ platform: 'LinkedIn', url: 'https://www.linkedin.com/in/jakub-berechowski', icon: 'fab fa-linkedin' },
|
||||
{ platform: 'GitHub', url: 'https://github.com/seccodesmith', icon: 'fab fa-github' },
|
||||
{ platform: 'Facebook', url: 'https://www.facebook.com/people/Seccodesmith/61575058536717/', icon: 'fab fa-facebook' },
|
||||
],
|
||||
questionsAndAnswers: [
|
||||
{ question: 'What is your typical project timeline?', answer: 'Project timelines vary based on complexity and scope. Small projects typically take 2-4 weeks, medium-sized projects 1-2 months, and larger enterprise solutions 3-6 months. I provide detailed timeline estimates during the initial consultation, and maintain transparent communication about progress throughout the development cycle.' },
|
||||
{ question: 'How does your collaboration process work?', answer: 'My collaboration process consists of five phases: initial consultation, requirements gathering, design and planning, implementation, and testing/deployment. I use agile methodologies with regular check-ins to ensure your vision is being realized. Communication is maintained through your preferred channels (email, Slack, etc.), and you\'ll have access to development milestones through shared repositories and project management tools.' },
|
||||
{ question: 'What are your payment terms and methods?', answer: 'I typically work with a milestone-based payment structure: 30% upfront to begin work, 30% at the midpoint after key deliverables are approved, and 40% upon project completion. For longer projects, we can establish additional milestones. I accept bank transfers, PayPal, and cryptocurrency payments. All payment terms are clearly outlined in the project contract before work begins.'},
|
||||
{ question: 'Who owns the code and deliverables?', answer: 'Upon final payment, you receive full ownership rights to all custom code and deliverables created specifically for your project. I maintain no proprietary claim to custom solutions developed for clients. For projects that incorporate open-source components, those elements remain under their original licenses, and I provide clear documentation of all third-party code used in your project.' },
|
||||
{ question: 'Do you offer support and maintenance?', answer: 'Yes, I offer a 30-day warranty period for all projects, during which bug fixes and minor adjustments are covered at no additional cost. For ongoing support, I provide maintenance packages that include regular updates, security patches, and priority response times. These can be tailored to your specific needs and budget, whether you require occasional support or dedicated monthly maintenance.'}
|
||||
],
|
||||
MapIframeUrl: 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d82077.2903513271!2d21.9433946!3d50.0411861!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x473cfae3cc14d449%3A0xd2240d31b33eb2ed!2zUnplc3rDs3c!5e0!3m2!1sen!2spl!4v1651813309336!5m2!1sen!2spl',
|
||||
phone: '',
|
||||
};
|
||||
const url = `${import.meta.env.BASE_URL}data/Contact.json`;
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error(`Failed to fetch blog posts: ${res.status}`);
|
||||
|
||||
export const contactData: ContactProps = await res.json();
|
||||
@@ -1,98 +0,0 @@
|
||||
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: "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:
|
||||
`- 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: [
|
||||
|
||||
]
|
||||
};
|
||||
@@ -1,5 +1,9 @@
|
||||
import type { ProjectProps, Category } from "../untils/ProjectProps";
|
||||
|
||||
const url = `${import.meta.env.BASE_URL}data/ProjectProps.json`;
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error(`Failed to fetch projects: ${res.status}`);
|
||||
|
||||
type CategoryMap = Record<string, Category>
|
||||
export const Categories: CategoryMap = {
|
||||
Embedded: {
|
||||
@@ -29,128 +33,16 @@ export const Categories: CategoryMap = {
|
||||
},
|
||||
}
|
||||
|
||||
export const projectsData: ProjectProps[] = [
|
||||
{
|
||||
id: "SecCodeSmithFrontend",
|
||||
title: "SecCodeSmith Portfolio Page - Frontend",
|
||||
description: "A modern, responsive portfolio page showcasing my projects, skills, and blog posts. Built with React and styled-components for a sleek user interface.",
|
||||
image: "/images/projects/shadowguardian.jpg",
|
||||
category: [Categories["Web"]],
|
||||
featured: true,
|
||||
technologies: [
|
||||
{ name: "React", icon: "devicon-react-original tech-icon" },
|
||||
{ name: "TypeScript", icon: "devicon-typescript-plain tech-icon" },
|
||||
{ name: "SCSS", icon: "devicon-sass-original tech-icon" },
|
||||
{ name: "Vite", icon: "devicon-vitejs-plain tech-icon" }
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/SecCodeSmith/shadowguardian",
|
||||
demo: "https://seccodesmith.pl"
|
||||
},
|
||||
projectDetails: {
|
||||
descriptions: [
|
||||
"This portfolio page is designed to highlight my skills and projects in a visually appealing way. It features a clean layout, smooth animations, and responsive design for optimal viewing on all devices.",
|
||||
"The project utilizes React for building the user interface, TypeScript for type safety, and SCSS for styling. The use of Vite ensures fast development and build times."
|
||||
],
|
||||
startDate: "12-05-2025",
|
||||
endDate: "",
|
||||
dateFormatted: "DD MMMM YYYY",
|
||||
role: "Frontend Developer",
|
||||
status: "In Progress",
|
||||
keyFeatures: [
|
||||
"Responsive design with mobile-first approach",
|
||||
"Dynamic project showcase with filtering options",
|
||||
"Interactive blog section with latest posts"
|
||||
],
|
||||
gallery: ["/images/projects/shadowguardian1.jpg", "/images/projects/shadowguardian2.jpg"],
|
||||
fullTechStack: [
|
||||
{ name: "React", icons: "devicon-react-original" },
|
||||
{ name: "TypeScript", icons: "devicon-typescript-plain" },
|
||||
{ name: "SCSS", icons: "devicon-sass-original" },
|
||||
{ name: "Vite", icons: "devicon-vitejs-plain" }
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "pyrosight",
|
||||
title: "PyroSight: Thermal Anomaly Detection",
|
||||
description: "An intelligent system that uses computer vision and thermal imaging to detect anomalies in industrial equipment. Employs PyTorch for deep learning to predict potential failures before they occur.",
|
||||
image: "/images/projects/pyrosight.jpg",
|
||||
category: [Categories["ML"], Categories["IoT"]],
|
||||
technologies: [
|
||||
{ name: "Python", icon: "devicon-python-plain tech-icon" },
|
||||
{ name: "PyTorch", icon: "devicon-pytorch-original tech-icon" },
|
||||
{ name: "OpenCV", icon: "fas fa-camera tech-icon" },
|
||||
{ name: "Raspberry Pi", icon: "fas fa-microchip tech-icon" }
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/SecCodeSmith/pyrosight"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "nexusflow",
|
||||
title: "NexusFlow: DevOps Dashboard",
|
||||
description: "A real-time monitoring dashboard for DevOps teams that visualizes CI/CD pipelines, infrastructure metrics, and deployment statuses. Built with Blazor for seamless updates without page refreshes.",
|
||||
image: "/images/projects/nexusflow.jpg",
|
||||
category: [Categories["Web"]],
|
||||
technologies: [
|
||||
{ name: "C#", icon: "devicon-csharp-plain tech-icon" },
|
||||
{ name: "Blazor", icon: "devicon-dotnetcore-plain tech-icon" },
|
||||
{ name: "Entity Framework", icon: "fas fa-database tech-icon" },
|
||||
{ name: "Docker", icon: "devicon-docker-plain tech-icon" }
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/SecCodeSmith/nexusflow",
|
||||
demo: "https://nexusflow.demo.com"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "etherwhisper",
|
||||
title: "EtherWhisper: Secure Communication Node",
|
||||
description: "A low-power, long-range communication node for IoT networks with military-grade encryption and mesh capabilities. Perfect for remote sensing applications in harsh environments.",
|
||||
image: "/images/projects/etherwhisper.jpg",
|
||||
category: [Categories["Embedded"], Categories["IoT"]],
|
||||
technologies: [
|
||||
{ name: "C", icon: "devicon-c-plain tech-icon" },
|
||||
{ name: "STM32", icon: "fas fa-memory tech-icon" },
|
||||
{ name: "LoRa", icon: "fas fa-broadcast-tower tech-icon" },
|
||||
{ name: "AES-256", icon: "fas fa-shield-alt tech-icon" }
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/SecCodeSmith/etherwhisper"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "dataforge",
|
||||
title: "DataForge: Advanced Analytics Platform",
|
||||
description: "A comprehensive data analytics platform with interactive visualization tools and automated reporting features. Integrates with various data sources and provides ML-powered insights.",
|
||||
image: "/images/projects/dataforge.jpg",
|
||||
category: [Categories["Web"]],
|
||||
technologies: [
|
||||
{ name: "Python", icon: "devicon-python-plain tech-icon" },
|
||||
{ name: "Django", icon: "devicon-django-plain tech-icon" },
|
||||
{ name: "React", icon: "devicon-react-original tech-icon" },
|
||||
{ name: "Pandas", icon: "devicon-pandas-original tech-icon" }
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/SecCodeSmith/dataforge",
|
||||
demo: "https://dataforge.demo.com"
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "visionkeeper",
|
||||
title: "VisionKeeper: Object Recognition System",
|
||||
description: "A real-time object recognition system optimized for edge devices. Capable of identifying and tracking objects with high accuracy even in challenging lighting conditions.",
|
||||
image: "/images/projects/visionkeeper.jpg",
|
||||
category: [Categories["ML"]],
|
||||
technologies: [
|
||||
{ name: "Python", icon: "devicon-python-plain tech-icon" },
|
||||
{ name: "PyTorch", icon: "devicon-pytorch-original tech-icon" },
|
||||
{ name: "OpenCV", icon: "fas fa-camera tech-icon" },
|
||||
{ name: "NVIDIA Jetson", icon: "fas fa-microchip tech-icon" }
|
||||
],
|
||||
links: {
|
||||
github: "https://github.com/SecCodeSmith/visionkeeper"
|
||||
}
|
||||
}
|
||||
];
|
||||
type RawProject = Omit<ProjectProps, 'category'> & { category: string[] };
|
||||
|
||||
const rawProjects: RawProject[] = await res.json();
|
||||
|
||||
// map the category-keys back to your CategoryMap objects
|
||||
export const projectsData: ProjectProps[] = rawProjects.map(p => ({
|
||||
...p,
|
||||
category: p.category.map(key => {
|
||||
const cat = Categories[key];
|
||||
if (!cat) throw new Error(`Unknown project category key: ${key}`);
|
||||
return cat;
|
||||
})
|
||||
}));
|
||||
|
||||
@@ -1,60 +1,7 @@
|
||||
import {type SkillCardProps} from '../components/SkillCard';
|
||||
import {type SkillCardProps} from '../untils/SkillCardProps';
|
||||
|
||||
export const skillCardData: SkillCardProps[] = [
|
||||
{
|
||||
categoryIcon: "fa-code",
|
||||
categoryTitle: "Languages",
|
||||
skills: [
|
||||
{ name: "C/C++", icon: "devicon-cplusplus-plain" },
|
||||
{ name: "Python", icon: "devicon-python-plain" },
|
||||
{ name: ".NET", icon: "devicon-dotnetcore-plain" },
|
||||
{ name: "C#", icon: "devicon-csharp-plain" },
|
||||
]
|
||||
},
|
||||
{
|
||||
categoryIcon: "fa-microchip",
|
||||
categoryTitle: "Embedded Systems",
|
||||
skills: [
|
||||
{ name: "STM32 (I2C, SPI, UART)", icon: "fas fa-microchip" },
|
||||
{ name: "ESP32", icon: "fas fa-wifi" },
|
||||
{ name: "Pico-SDK", icon: "fas fa-memory" }
|
||||
]
|
||||
},
|
||||
{
|
||||
categoryIcon: "fa-brain",
|
||||
categoryTitle: "Data & ML",
|
||||
skills: [
|
||||
{ name: "Pandas", icon: "devicon-pandas-plain" },
|
||||
{ name: "Scikit-learn", icon: "devicon-scikitlearn-plain" },
|
||||
{ name: "Scikit-image", icon: "fas fa-image" },
|
||||
{ name: "PyTorch", icon: "devicon-pytorch-plain" },
|
||||
{ name: "OpenCV", icon: "devicon-opencv-plain" }
|
||||
]
|
||||
},
|
||||
{
|
||||
categoryIcon: "fas fa-window-maximize",
|
||||
categoryTitle: "Web Development",
|
||||
skills: [
|
||||
{ name: "ASP.NET Core", icon: "devicon-dot-net-plain" },
|
||||
{ name: "Entity Framework", icon: "fas fa-database" },
|
||||
{ name: "Blazor", icon: "devicon-dotnetcore-plain"},
|
||||
{ name: "React", icon: "devicon-react-original" },
|
||||
{ name: "Django", icon: "devicon-django-plain" },
|
||||
{ name: "Bootstrap", icon: "devicon-bootstrap-plain" },
|
||||
],
|
||||
},
|
||||
{
|
||||
categoryIcon: "fas fa-cloud",
|
||||
categoryTitle: "DevOps & Systems",
|
||||
skills: [
|
||||
{ name: "Docker", icon: "devicon-docker-plain" },
|
||||
{ name: "Docker-compose", icon: "fas fa-layer-group" },
|
||||
{ name: "Linux CLI", icon: "devicon-bash-plain" },
|
||||
{ name: "Git", icon: "devicon-git-plain" },
|
||||
{ name: "CI/CD", icon: "fas fa-cogs" },
|
||||
{ name: "Cmake", icon: "devicon-cmake-plain" },
|
||||
{ name: "Linux", icon: "devicon-linux-plain" },
|
||||
{ name: "Jenkins", icon: "devicon-jenkins-plain" },
|
||||
]
|
||||
}
|
||||
];
|
||||
const url = `${import.meta.env.BASE_URL}data/SkillCardProps.json`;
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error(`Failed to fetch skill card data: ${res.status}`);
|
||||
|
||||
export const skillCardData: SkillCardProps[] = await res.json();
|
||||
@@ -1,24 +1,7 @@
|
||||
import {type socialLink} from "../components/Footer";
|
||||
import {type SocialLink} from "../untils/SocialLink";
|
||||
|
||||
export const socialLinkData: socialLink[] = [
|
||||
{
|
||||
icon: "fab fa-github",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
icon: "fab fa-linkedin",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
icon: "fab fa-twitter",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
icon: "fab fa-discord",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
icon: "fas fa-envelope",
|
||||
url: ""
|
||||
},
|
||||
]
|
||||
const url = `${import.meta.env.BASE_URL}data/SocialLink.json`;
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error(`Failed to fetch skill card data: ${res.status}`);
|
||||
|
||||
export const socialLinkData: SocialLink[] = await res.json();
|
||||
@@ -1,39 +1,8 @@
|
||||
import { PageHeader } from '../components/PageHeader';
|
||||
import { aboutProps } from '../data/experienceData';
|
||||
import { aboutProps } from '../data/AboutProps';
|
||||
|
||||
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 (
|
||||
|
||||
@@ -162,7 +162,7 @@ export const BlogPost = () => {
|
||||
<article>
|
||||
{/* Post Header */}
|
||||
<div className={style.postHeader}>
|
||||
<div className={style.postFeaturedImage} style={{ backgroundImage: `url(${post.image})` }}></div>
|
||||
<div className={style.postFeaturedImage} style={{ backgroundImage: `url(${import.meta.env.BASE_URL}${post.image})` }}></div>
|
||||
<div className={style.postCategory}>{post.category}</div>
|
||||
</div>
|
||||
|
||||
@@ -227,8 +227,8 @@ export const BlogPost = () => {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Comments Section */}
|
||||
{/*Temporarily disable comments section */}
|
||||
{ 0 && (
|
||||
<div className={style.commentsSection}>
|
||||
<h3 className={style.commentsTitle}>Discussions ({post.commentCount})</h3>
|
||||
|
||||
@@ -264,6 +264,7 @@ export const BlogPost = () => {
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
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;
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
export interface Skill {
|
||||
name: string;
|
||||
icon: React.ReactNode; // Or string if using CSS classes for icons
|
||||
}
|
||||
|
||||
export interface SkillCardProps {
|
||||
categoryTitle: string;
|
||||
categoryIcon: React.ReactNode; // Or string
|
||||
skills: Skill[];
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface SocialLink {
|
||||
icon: string;
|
||||
url: string;
|
||||
}
|
||||
@@ -1,23 +1,46 @@
|
||||
{
|
||||
"files": [],
|
||||
"references": [
|
||||
{ "path": "./tsconfig.app.json" },
|
||||
{ "path": "./tsconfig.node.json" }
|
||||
{
|
||||
"path": "./tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.node.json"
|
||||
}
|
||||
],
|
||||
|
||||
"compilerOptions": {
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"],
|
||||
"@assets/*": ["src/assets/*"],
|
||||
"@components/*": ["src/components/*"],
|
||||
"@pages/*": ["src/pages/*"],
|
||||
"@data/*": ["src/data/*"],
|
||||
"@styles/*": ["src/styles/*"],
|
||||
"@tests/*": ["src/tests/*"],
|
||||
"@images/*": ["src/assets/images/*"],
|
||||
"@/*": [
|
||||
"src/*"
|
||||
],
|
||||
"@assets/*": [
|
||||
"src/assets/*"
|
||||
],
|
||||
"@components/*": [
|
||||
"src/components/*"
|
||||
],
|
||||
"@pages/*": [
|
||||
"src/pages/*"
|
||||
],
|
||||
"@data/*": [
|
||||
"src/data/*"
|
||||
],
|
||||
"@styles/*": [
|
||||
"src/styles/*"
|
||||
],
|
||||
"@tests/*": [
|
||||
"src/tests/*"
|
||||
],
|
||||
"@images/*": [
|
||||
"src/assets/images/*"
|
||||
],
|
||||
},
|
||||
"moduleResolution": "node",
|
||||
"types": ["node"]
|
||||
"types": [
|
||||
"node"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -21,5 +21,11 @@ export default defineConfig({
|
||||
plugins: [
|
||||
react(),
|
||||
],
|
||||
|
||||
publicDir: 'public',
|
||||
|
||||
build: {
|
||||
target: ['es2022', 'chrome100', 'firefox100', 'safari15']
|
||||
},
|
||||
|
||||
})
|
||||
|
||||