-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskillsData.js
45 lines (43 loc) · 876 Bytes
/
skillsData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import {
html,
css,
javascript,
react,
reduxx,
nextjs,
styled,
tailwind,
bootstrap,
firebase,
github,
figma,
typescript,
} from "./public/assets/skills/index"
const skills = [
{ id: 1, name: "HTML", image: html },
{ id: 2, name: "CSS", image: css },
{
id: 3,
name: "Javascript",
image: javascript,
},
{ id: 4, name: "Typescript", image: typescript },
{ id: 5, name: "React", image: react },
{ id: 6, name: "Redux", image: reduxx },
{ id: 7, name: "Next.js", image: nextjs },
{
id: 8,
name: "Styled Components",
image: styled,
},
{ id: 9, name: "Tailwind", image: tailwind },
{
id: 10,
name: "Bootstrap",
image: bootstrap,
},
{ id: 11, name: "Firebase", image: firebase },
{ id: 12, name: "Github", image: github },
{ id: 13, name: "Figma", image: figma },
]
export default skills