Skip to content

Commit 3494a5f

Browse files
committed
add php and mysql as skill
1 parent 5b385ec commit 3494a5f

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

src/assets/images/icons/mysql.svg

Lines changed: 4 additions & 0 deletions
Loading

src/assets/images/icons/php.svg

Lines changed: 38 additions & 0 deletions
Loading

src/data/Skills.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ import figmaLogo from '../assets/images/icons/figma.svg';
44
import gitLogo from '../assets/images/icons/git.svg';
55
import htmlLogo from '../assets/images/icons/html.svg';
66
import javascriptLogo from '../assets/images/icons/javascript.svg';
7+
import mysqlLogo from '../assets/images/icons/mysql.svg';
78
import nextjsLogo from '../assets/images/icons/nextjs.svg';
89
import photoshopLogo from '../assets/images/icons/photoshop.svg';
10+
import phpLogo from '../assets/images/icons/php.svg';
911
import reactLogo from '../assets/images/icons/react.svg';
1012
import reduxLogo from '../assets/images/icons/redux.svg';
1113
import sassLogo from '../assets/images/icons/sass.svg';
@@ -21,6 +23,12 @@ type PropsType = {
2123

2224
const SKILLS = {
2325
languages: <PropsType[]>[
26+
{
27+
id: 1,
28+
name: 'PHP',
29+
icon: phpLogo,
30+
color: '#61DBFB',
31+
},
2432
{
2533
id: 1,
2634
name: 'React',
@@ -39,6 +47,12 @@ const SKILLS = {
3947
icon: nextjsLogo,
4048
color: '#61DBFB',
4149
},
50+
{
51+
id: 3,
52+
name: 'MySQL',
53+
icon: mysqlLogo,
54+
color: '#61DBFB',
55+
},
4256
{
4357
id: 4,
4458
name: 'Javascript',

0 commit comments

Comments
 (0)