add of single project exemples in Project.jsx

This commit is contained in:
Giovanni-Josserand 2025-08-21 17:02:59 +02:00
parent 47eafec0c4
commit f47aa2e1f0
2 changed files with 5 additions and 0 deletions

View File

Before

Width:  |  Height:  |  Size: 739 KiB

After

Width:  |  Height:  |  Size: 739 KiB

View File

@ -1,7 +1,12 @@
import SingleProject from "./SingleProject.jsx";
function Projects() {
const desc = "A platform for creating and sharing code snippets with a clean and intuitive design. It allows you to create, share, and discover code snippets with ease."
return (
<section id="projects-section">
<h1>Projects</h1>
<SingleProject image="landscape" title="Portfolio" description={desc} skills={['HTML', 'CSS', 'React', 'Git']} color="orange" />
<SingleProject image="landscape" title="SAE C++" description={desc} skills={['C++', 'Git']} color="purple" />
<SingleProject image="landscape" title="Proxmox" description={desc} skills={[]} color="green" />
</section>
)
}