From f47aa2e1f00cc7d66a20f93e464b3a59d9010e64 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Thu, 21 Aug 2025 17:02:59 +0200 Subject: [PATCH] add of single project exemples in Project.jsx --- public/{ => assets/images}/landscape.jpeg | Bin src/components/Projects.jsx | 5 +++++ 2 files changed, 5 insertions(+) rename public/{ => assets/images}/landscape.jpeg (100%) diff --git a/public/landscape.jpeg b/public/assets/images/landscape.jpeg similarity index 100% rename from public/landscape.jpeg rename to public/assets/images/landscape.jpeg diff --git a/src/components/Projects.jsx b/src/components/Projects.jsx index 5cea386..e4c1e78 100644 --- a/src/components/Projects.jsx +++ b/src/components/Projects.jsx @@ -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 (

Projects

+ + +
) }