1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

feat: add Open source section

This commit is contained in:
Divlo
2021-07-04 19:56:05 +02:00
parent 2d68ce59ca
commit ccf5d42c19
11 changed files with 1075 additions and 1559 deletions

View File

@ -9,6 +9,7 @@ import { Portfolio } from 'components/Portfolio'
import { Profile } from 'components/Profile'
import { SocialMediaList } from 'components/Profile/SocialMediaList'
import { Skills } from 'components/Skills'
import { OpenSource } from 'components/OpenSource'
const Home: React.FC = () => {
const { t } = useTranslation()
@ -47,6 +48,12 @@ const Home: React.FC = () => {
<Portfolio />
</Section>
</RevealFade>
<RevealFade>
<Section id='open-source' heading='Open source' withoutShadowContainer>
<OpenSource />
</Section>
</RevealFade>
</>
)
}