First commit

This commit is contained in:
2025-05-16 14:02:21 +02:00
parent 64fbc970ff
commit c741dc73bb
36 changed files with 8249 additions and 0 deletions
+90
View File
@@ -0,0 +1,90 @@
import { useState } from 'react'
export interface ProjectTech {
name: string;
icon: string;
}
export interface ProjectProps {
id: string;
title: string;
description: string;
image: string;
category: string[];
featured?: boolean;
technologies: ProjectTech[];
links: {
github?: string;
demo?: string;
};
}
interface ProjectCardProps {
project: ProjectProps;
onOpenDetails: (id: string) => void;
}
export const ProjectCard: React.FC<ProjectCardProps> = ({ project, onOpenDetails }) => {
const [, setHovered] = useState(false);
return (
<div
className={`card h-100 ${project.featured ? 'featured-card' : ''}`}
data-category={project.category.join(',')}
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
>
<div className="position-relative">
<img src={project.image} className="card-img-top" alt={project.title} />
<div className="category-badge">{project.category[0]}</div>
{project.featured && (
<div className="featured-badge">
<i className="fas fa-star"></i>
<span>Featured</span>
</div>
)}
</div>
<div className="card-body d-flex flex-column">
<h3 className="card-title">{project.title}</h3>
<p className="card-text">
{project.description}
</p>
<div>
<h4 className="tech-title">// TECHNOLOGIES_USED</h4>
<div className="tech-stack">
{project.technologies.map((tech, index) => (
<span className="tech-item" key={index}>
<i className={tech.icon}></i>
<span>{tech.name}</span>
</span>
))}
</div>
</div>
<div className="mt-auto d-flex gap-2 flex-wrap project-links">
<button
className="btn btn-outline-secondary"
onClick={() => onOpenDetails(project.id)}
>
<i className="fas fa-info-circle me-2"></i>
Project Details
</button>
{project.links.github && (
<a href={project.links.github} className="btn btn-outline-secondary">
<i className="fab fa-github me-2"></i>
View Code
</a>
)}
{project.links.demo && (
<a href={project.links.demo} className="btn btn-outline-secondary">
<i className="fas fa-external-link-alt me-2"></i>
Live Demo
</a>
)}
</div>
</div>
</div>
)
}