Skip to content

Commit 24c28ec

Browse files
Add more options to the skill set selection (#71) (#72)
Co-authored-by: Wilker Ribeiro <rekliw97@gmail.com>
1 parent 45acf4c commit 24c28ec

7 files changed

Lines changed: 113 additions & 6 deletions

File tree

src/config/skills.ts

Lines changed: 37 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
/* eslint-disable prettier/prettier */
22
const BASE_URL = typeof window !== 'undefined' ? window.location.href : '';
33

4-
export const SKILLS = {
4+
type Skill = { label: string; value: string; iconUrl: string };
5+
6+
export const SKILLS: Record<string, Skill> = {
57
vuejs: {
68
label: 'Vue.js',
79
value: 'vuejs',
@@ -12,16 +14,15 @@ export const SKILLS = {
1214
value: 'react',
1315
iconUrl: BASE_URL + 'skills-assets/react-original-wordmark.svg',
1416
},
15-
angularjs: {
16-
label: 'AngularJS',
17-
value: 'angularjs',
17+
angular: {
18+
label: 'Angular',
19+
value: 'angular',
1820
iconUrl: BASE_URL + 'skills-assets/angularjs-original.svg',
1921
},
2022
aws: {
2123
label: 'AWS',
2224
value: 'aws',
23-
iconUrl:
24-
BASE_URL + 'skills-assets/amazonwebservices-original-wordmark.svg',
25+
iconUrl: BASE_URL + 'skills-assets/amazonwebservices-original-wordmark.svg',
2526
},
2627
android: {
2728
label: 'Android',
@@ -540,4 +541,34 @@ export const SKILLS = {
540541
value: 'deno',
541542
iconUrl: BASE_URL + 'skills-assets/deno.svg',
542543
},
544+
nestjs: {
545+
label: 'NestJS',
546+
value: 'nestjs',
547+
iconUrl: BASE_URL + 'skills-assets/nestjs.svg',
548+
},
549+
bem: {
550+
label: 'BEM',
551+
value: 'bem',
552+
iconUrl: BASE_URL + 'skills-assets/bem.svg',
553+
},
554+
powershell: {
555+
label: 'PowerShell',
556+
value: 'powershell',
557+
iconUrl: BASE_URL + 'skills-assets/powershell.png',
558+
},
559+
gitlab: {
560+
label: 'GitLab',
561+
value: 'gitlab',
562+
iconUrl: BASE_URL + 'skills-assets/gitlab.svg',
563+
},
564+
dotnetcore: {
565+
label: '.Net Core',
566+
value: 'dotnetcore',
567+
iconUrl: BASE_URL + 'skills-assets/dotnetcore.png',
568+
},
569+
prisma: {
570+
label: 'Prisma',
571+
value: 'prisma',
572+
iconUrl: BASE_URL + 'skills-assets/prisma.png',
573+
},
543574
};

static/skills-assets/bem.svg

Lines changed: 1 addition & 0 deletions
Loading
24.4 KB
Loading

static/skills-assets/gitlab.svg

Lines changed: 69 additions & 0 deletions
Loading

static/skills-assets/nestjs.svg

Lines changed: 6 additions & 0 deletions
Loading
8.07 KB
Loading

static/skills-assets/prisma.png

3.72 KB
Loading

0 commit comments

Comments
 (0)