17 lines
452 B
React
17 lines
452 B
React
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; |