File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/* eslint-disable prettier/prettier */
22const 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} ;
You can’t perform that action at this time.
0 commit comments