mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
import { SkillComponent } from './Skill'
|
|
import { SkillsSection } from './SkillsSection'
|
|
|
|
export const Skills: React.FC = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<>
|
|
<SkillsSection title={t('home:skills.languages')}>
|
|
<SkillComponent skill='TypeScript' />
|
|
<SkillComponent skill='Python' />
|
|
<SkillComponent skill='C/C++' />
|
|
<SkillComponent skill='PHP' />
|
|
</SkillsSection>
|
|
|
|
<SkillsSection title='Frontend'>
|
|
<SkillComponent skill='HTML' />
|
|
<SkillComponent skill='CSS' />
|
|
<SkillComponent skill='Tailwind CSS' />
|
|
<SkillComponent skill='React.js (+ Next.js)' />
|
|
</SkillsSection>
|
|
|
|
<SkillsSection title='Backend'>
|
|
<SkillComponent skill='Laravel' />
|
|
<SkillComponent skill='Node.js' />
|
|
<SkillComponent skill='Fastify' />
|
|
<SkillComponent skill='PostgreSQL' />
|
|
</SkillsSection>
|
|
|
|
<SkillsSection title={t('home:skills.software-tools')}>
|
|
<SkillComponent skill='GNU/Linux' />
|
|
<SkillComponent skill='Arch Linux' />
|
|
<SkillComponent skill='Visual Studio Code' />
|
|
<SkillComponent skill='Git' />
|
|
<SkillComponent skill='Docker' />
|
|
</SkillsSection>
|
|
</>
|
|
)
|
|
}
|