add of footer in ProjectsPage.jsx

This commit is contained in:
Giovanni-Josserand 2025-09-03 21:49:52 +02:00
parent 852d616678
commit 7f55f3b95a

View File

@ -1,8 +1,12 @@
import Projects from "../components/Projects/Projects.jsx";
import Footer from "../components/Footer/Footer.jsx";
function ProjectsPage() {
return (
<Projects/>
<div>
<Projects/>
<Footer/>
</div>
);
}
export default ProjectsPage;