move all components that are exclusive to one page

This commit is contained in:
2026-04-23 15:37:39 +02:00
parent 23233d4be6
commit d34eb5714f
17 changed files with 19 additions and 19 deletions
+12
View File
@@ -0,0 +1,12 @@
import Projects from "../../components/Projects/Projects.jsx";
import Footer from "../../components/Footer/Footer.jsx";
function ProjectsPage() {
return (
<div>
<Projects/>
<Footer/>
</div>
);
}
export default ProjectsPage;