Skip to content

Commit ac714a0

Browse files
committed
feat: refine skills section
1 parent 40a5fa1 commit ac714a0

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/sections/Skills/Skills.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ type Skill = { label: string; icon?: string };
88
const skills: Skill[] = [
99
{ label: 'TypeScript', icon: 'typescript-plain' },
1010
{ label: 'React', icon: 'react-plain' },
11-
{ label: 'HTML/CSS', icon: 'html5-plain' },
11+
{ label: 'HTML/CSS' },
1212
{ label: 'Tailwind', icon: 'tailwindcss-original' },
1313
{ label: 'Storybook', icon: 'storybook-plain' },
14-
{ label: 'PostgreSQL', icon: 'postgresql-plain' },
1514
{
1615
label: 'AWS (Lambda, SNS/SQS, S3)',
1716
icon: 'amazonwebservices-plain-wordmark',
1817
},
18+
{ label: 'Terraform', icon: 'terraform-plain' },
1919
{ label: 'GraphQL', icon: 'graphql-plain' },
20+
{ label: 'PostgreSQL', icon: 'postgresql-plain' },
2021
{ label: 'Web Components' },
2122
];
2223

@@ -28,11 +29,12 @@ const learning: Skill[] = [
2829
];
2930

3031
const softSkills: Skill[] = [
31-
{ label: 'Product engineering (Shape Up methodologies)' },
32-
{ label: 'Design systems & design engineering' },
33-
{ label: 'Web standards (a11y, best practices, performance, browser APIs)' },
32+
{ label: 'Product engineering' },
33+
{ label: 'Design systems' },
34+
{ label: 'Web standards & browser APIs' },
35+
{ label: 'Web accessibility & best practices' },
3436
{ label: 'Testing methodologies (unit, integration, E2E, VRT)' },
35-
{ label: 'On-call duties & incident management' },
37+
{ label: 'On-call & incident management' },
3638
{ label: 'Remote work' },
3739
];
3840

0 commit comments

Comments
 (0)