add a show more button

This commit is contained in:
2025-08-21 17:15:22 +02:00
parent f47aa2e1f0
commit dc32a35cfa
4 changed files with 36 additions and 2 deletions
+6
View File
@@ -1,4 +1,5 @@
import SingleProject from "./SingleProject.jsx";
import "../styles/Projects.css"
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 (
@@ -7,6 +8,11 @@ function Projects() {
<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" />
<div className="show-more-container">
<p className="show-more-link">
Show more
</p>
</div>
</section>
)
}