add home page and projects page

This commit is contained in:
2025-08-31 21:34:49 +02:00
parent 17f3b1aa1c
commit 78dec2a053
10 changed files with 132 additions and 30 deletions
+17
View File
@@ -0,0 +1,17 @@
import Home from '../components/Home.jsx'
import Experiences from '../components/Experiences.jsx'
import Projects from '../components/Projects.jsx'
import Skills from '../components/Skills.jsx'
import Footer from '../components/Footer.jsx'
function HomePage() {
return (
<div>
<Home/>
<Experiences/>
<Projects/>
<Skills/>
<Footer/>
</div>
);
}
export default HomePage;