-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.js
37 lines (37 loc) · 1.37 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
const reactProjects = [
{
name: "Jammming",
description:
"Website that allows users to search the Spotify library, create a custom playlist and save it to their Spotify account.",
img: "./img/jammming.png",
url: "https://thirsty-elion-d32e4e.netlify.app/",
},
{
name: "Passing Thoughts",
description:
"Place for our passing thoughts. Once you add a short thought, it’ll disappear after just 15 seconds.",
img: "./img/passing.png",
url: "https://stoic-yonath-e8d4fb.netlify.app/",
},
{
name: "Color Generator",
description:
"Tool that will return multiple tints and shades of the specified color (in hex format). Based on John Smilga's tutorial.",
img: "./img/color-mixer.png",
url: "https://color-generator-subakmil.netlify.app/",
},
{
name: "Tours",
description:
"Website built in React that displays multiple tours recommendations. Based on John Smilga's tutorial.",
img: "./img/tours.png",
url: "https://tours-subakmil.netlify.app/",
},
{
name: "Copycat",
description:
"When users type into the textbox, a copy of the text will appear below the cat image, suggesting that the cat is being a copycat. Clicking on the image of the cat will toggle whether or not it is able to copy the user.",
img: "./img/copycat.png",
url: "https://copycat-subakmil.netlify.app/",
},
];