dev #14

Merged
Giovanni-Josserand merged 32 commits from dev into main 2025-08-28 13:35:46 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit f47aa2e1f0 - Show all commits

View File

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