mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
1505b81233
BREAKING CHANGE: minimum supported Node.js >= 16.0.0 and npm >= 8.0.0 fixes #74
43 lines
1.3 KiB
TypeScript
43 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='JavaScript' />
|
|
<SkillComponent skill='TypeScript' />
|
|
<SkillComponent skill='Python' />
|
|
<SkillComponent skill='C/C++' />
|
|
</SkillsSection>
|
|
|
|
<SkillsSection title='Front-end'>
|
|
<SkillComponent skill='HTML' />
|
|
<SkillComponent skill='CSS' />
|
|
<SkillComponent skill='Tailwind CSS' />
|
|
<SkillComponent skill='React.js (+ Next.js)' />
|
|
</SkillsSection>
|
|
|
|
<SkillsSection title='Back-end'>
|
|
<SkillComponent skill='Node.js' />
|
|
<SkillComponent skill='Fastify' />
|
|
<SkillComponent skill='Prisma' />
|
|
<SkillComponent skill='PostgreSQL' />
|
|
<SkillComponent skill='MySQL' />
|
|
</SkillsSection>
|
|
|
|
<SkillsSection title={t('home:skills.software-tools')}>
|
|
<SkillComponent skill='GNU/Linux' />
|
|
<SkillComponent skill='Ubuntu' />
|
|
<SkillComponent skill='Visual Studio Code' />
|
|
<SkillComponent skill='Git' />
|
|
<SkillComponent skill='Docker' />
|
|
</SkillsSection>
|
|
</>
|
|
)
|
|
}
|