-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
96 lines (94 loc) · 2.29 KB
/
data.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
export const projects = [
{
id: 0,
name: "My Portfolio",
image: "portfolio",
desc: "An introductory website with the developer details and his best works.",
github: "My-Portfolio",
demo: "bragg",
skills: ["figma", "html", "css", "js"]
},
{
id: 0,
name: "MovieLife",
image: "movielife",
desc: "MovieLife is a movie discovery platform that helps users explore, find, and track their favorite films.",
github: "Movielife",
demo: "movielife",
skills: ["figma", "react", "css", "firestore", "api"]
},
{
id: 0,
name: "ShopLife",
image: "shoplife",
desc: "ShopLife is an e-commerce web app that allows users to browse and purchase products online. It provides a seamless shopping experience.",
github: "Shoplife",
demo: "shoplife",
skills: ["figma", "react", "css", "firestore", "api"]
},
{
id: 0,
name: "Quizzical",
image: "quizzical",
desc: "Quizzical is a solo project I made while learning with Scrimba. Answer questions and view scores.",
github: "quizzical",
demo: "inspiring-praline-02963a",
skills: [, "react", "css", "api"]
},
]
export const skills = [
[
{
name: "HTML5",
icon: "html"
},
{
name: "CSS3",
icon: "css"
},
{
name: "JAVASCRIPT",
icon: "js"
},
{
name: "TYPESCRIPT",
icon: "ts"
},
{
name: "REACT",
icon: "react"
},
{
name: "FIGMA",
icon: "figma"
},
{
name: "GIT",
icon: "git"
},
{
name: "API",
icon: "api"
},
// {
// name: "TYPESCRIPT",
// icon: "ts"
// },
// {
// name: "NODE",
// icon: "node"
// },
// {
// name: "SOLIDITY",
// icon: "solidity"
// },
// {
// name: "ETHER",
// icon: "ether"
// },
// {
// name: "WEB3",
// icon: "web3"
// },
]
]