update of project images

This commit is contained in:
Giovanni-Josserand 2025-08-22 14:35:41 +02:00
parent f1d1a8770b
commit d20279fa10
5 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 739 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

View File

@ -7,7 +7,7 @@ function Projects() {
<h1>Projects</h1> <h1>Projects</h1>
<SingleProject image="landscape" title="Portfolio" description={desc} skills={['HTML', 'CSS', 'React', 'Git']} color="orange" /> <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="SAE C++" description={desc} skills={['C++', 'Git']} color="purple" />
<SingleProject image="landscape" title="Proxmox" description={desc} skills={[]} color="green" /> <SingleProject image="proxmox" title="Proxmox" description={desc} skills={[]} color="green" />
<div className="show-more-container"> <div className="show-more-container">
<p className="show-more-link"> <p className="show-more-link">
Show more Show more

View File

@ -4,7 +4,7 @@ function SingleProject({image, title, description, skills, color}) {
return ( return (
<div className="single-project"> <div className="single-project">
<div className="single-project-left"> <div className="single-project-left">
<img src={`/public/assets/images/${image}.jpeg`} alt={image}/> <img src={`/public/assets/images/${image}.png`} alt={image}/>
</div> </div>
<div className="single-project-middle"> <div className="single-project-middle">
<div aria-hidden="true" className={`single-project-line color-${color}`}></div> <div aria-hidden="true" className={`single-project-line color-${color}`}></div>