1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-09-11 23:09:22 +02:00

fix: rename portfolio to projects + reorganize home page ordering of sections

This commit is contained in:
2025-08-31 20:51:55 +02:00
parent b3140dd977
commit 49896bbaeb
4 changed files with 15 additions and 15 deletions

View File

@@ -21,21 +21,21 @@ const HomePage: React.FC<HomePageProps> = async (props) => {
<MainLayout>
<About />
<RevealFade>
<Interests />
</RevealFade>
<RevealFade>
<Skills />
</RevealFade>
<RevealFade>
<Portfolio />
</RevealFade>
<RevealFade>
<Interests />
</RevealFade>
<RevealFade>
<OpenSource />
</RevealFade>
<RevealFade>
<Skills />
</RevealFade>
</MainLayout>
)
}