Complete skills data to match mockups

This commit is contained in:
Konrad Szwarc 2022-08-28 23:10:46 +02:00
parent 75856ecb07
commit 0f416c75e5
2 changed files with 43 additions and 1 deletions

View file

@ -138,6 +138,48 @@ const data: Data = {
}, },
], ],
}, },
{
title: 'I want to learn',
skills: [
{
icon: 'simple-icons:apollographql',
iconColor: '#311C87',
name: 'Apollo GraphQL',
},
{
icon: 'simple-icons:astro',
iconColor: '#FF5D01',
name: 'Astro',
},
{
icon: 'simple-icons:supabase',
iconColor: '#3ECF8E',
name: 'Supabase',
},
{
icon: 'simple-icons:cypress',
iconColor: '#17202C',
name: 'Cypress',
},
],
},
{
title: 'I speak',
skills: [
{
icon: 'cif:pl',
name: 'Polish - native',
},
{
icon: 'cif:us',
name: 'English - C1',
},
{
icon: 'cif:es',
name: 'Spanish - B1',
},
],
},
], ],
}, },
experience: { experience: {

View file

@ -10,6 +10,6 @@ interface SkillSet<SkillType> {
} }
export interface SkillsSection { export interface SkillsSection {
skillSets: SkillSet<Tag>[] | SkillSet<LevelledSkill>[]; skillSets: (SkillSet<Tag> | SkillSet<LevelledSkill>)[];
config: SectionConfig; config: SectionConfig;
} }