index page

This commit is contained in:
Morph01
2024-02-10 19:36:47 +01:00
parent 217c1508a6
commit 97a085350d

View File

@@ -0,0 +1,15 @@
import AboutMe from "../AboutMe";
import HeroSection from "../HeroSection";
import MyPortfolio from "../MyPortfolio";
import MySkills from "../MySkills";
export default function Home() {
return (
<>
<HeroSection />
<MySkills />
<AboutMe />
<MyPortfolio />
</>
);
}