-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
36 lines (35 loc) · 1.34 KB
/
data.js
File metadata and controls
36 lines (35 loc) · 1.34 KB
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
const games = [
{
id: 1,
title: 'Red Dead Redemption 2',
src: 'https://m.media-amazon.com/images/I/81z80lFufgL._AC_UL872_FMwebp_QL65_.jpg',
link: 'https://www.amazon.com/Red-Dead-Redemption-2-PlayStation-4/dp/B01M5DZ525/ref=sr_1_3?keywords=ps4+games&qid=1551459125&s=gateway&sr=8-3',
isFeatured: true,
isAvailable: true
},
{
id: 2,
title: 'Marvels Spiderman',
src: 'https://m.media-amazon.com/images/I/81d6JU6g1pL._AC_UL872_FMwebp_QL65_.jpg',
link: 'https://www.amazon.com/Marvels-Spider-Man-PlayStation-4/dp/B01GW8YDLK/ref=sr_1_4?keywords=ps4+games&qid=1551459125&s=gateway&sr=8-4',
isAvailable: false,
isFeatured: false
},
{
id: 3,
title: 'God of war',
src: 'https://m.media-amazon.com/images/I/51po2bu7VnL._AC_UL872_FMwebp_QL65_.jpg',
link: 'https://www.amazon.com/Marvels-Spider-Man-PlayStation-4/dp/B01GW8YDLK/ref=sr_1_4?keywords=ps4+games&qid=1551459125&s=gateway&sr=8-4',
isFeatured: true,
isAvailable: true
},
{
id: 4,
title: 'Assassins creed Odyssey',
src: 'https://m.media-amazon.com/images/I/81da48KsFpL._AC_UL872_FMwebp_QL65_.jpg',
link: 'https://www.amazon.com/Assassins-Creed-Odyssey-PlayStation-4-Standard/dp/B07DKYN13M/ref=sr_1_5?keywords=ps4+games&qid=1551460416&s=gateway&sr=8-5',
isAvailable: false,
isFeatured: false
}
];
export default games;