1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/Skills/index.tsx

42 lines
1.3 KiB
TypeScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
import useTranslation from 'next-translate/useTranslation'
2021-06-24 19:46:44 +02:00
import { SkillComponent } from './Skill'
2021-04-18 01:56:23 +02:00
import { SkillsSection } from './SkillsSection'
export const Skills: React.FC = () => {
const { t } = useTranslation()
return (
<>
<SkillsSection title={t('home:skills.languages')}>
2021-06-24 19:46:44 +02:00
<SkillComponent skill='TypeScript' />
<SkillComponent skill='Python' />
2021-10-01 08:51:07 +02:00
<SkillComponent skill='C/C++' />
2022-10-20 22:24:01 +02:00
<SkillComponent skill='PHP' />
2021-04-18 01:56:23 +02:00
</SkillsSection>
2023-05-29 17:44:26 +02:00
<SkillsSection title='Frontend'>
2021-06-24 19:46:44 +02:00
<SkillComponent skill='HTML' />
<SkillComponent skill='CSS' />
<SkillComponent skill='Tailwind CSS' />
<SkillComponent skill='React.js (+ Next.js)' />
2021-04-18 01:56:23 +02:00
</SkillsSection>
2023-05-29 17:44:26 +02:00
<SkillsSection title='Backend'>
2022-10-20 22:24:01 +02:00
<SkillComponent skill='Laravel' />
2021-06-24 19:46:44 +02:00
<SkillComponent skill='Node.js' />
<SkillComponent skill='Fastify' />
<SkillComponent skill='PostgreSQL' />
2021-04-18 01:56:23 +02:00
</SkillsSection>
<SkillsSection title={t('home:skills.software-tools')}>
2021-10-01 08:36:18 +02:00
<SkillComponent skill='GNU/Linux' />
2023-06-18 12:18:24 +02:00
<SkillComponent skill='Arch Linux' />
2021-06-24 19:46:44 +02:00
<SkillComponent skill='Visual Studio Code' />
<SkillComponent skill='Git' />
<SkillComponent skill='Docker' />
2021-04-18 01:56:23 +02:00
</SkillsSection>
</>
)
}