feature/projectSection #6

Merged
Giovanni-Josserand merged 4 commits from feature/projectSection into dev 2025-08-21 15:16:26 +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() { 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 ( return (
<section id="projects-section"> <section id="projects-section">
<h1>Projects</h1> <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> </section>
) )
} }