-
Notifications
You must be signed in to change notification settings - Fork 0
/
seed.js
42 lines (41 loc) · 1.14 KB
/
seed.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
window.Seed = (function () {
const submissions = [
{
id: 1,
title: '4 Corners',
description: 'House design application for dummies.',
url: '#',
votes: 9,
avatar: './public/images/avatars/daniel.jpg',
submissionImage: './public/images/submissions/image-yellow.png',
},
{
id: 2,
title: 'Demotrashy',
description: 'Win presidential elections by giving free coffee.',
url: '#',
votes: 11,
avatar: './public/images/avatars/kristy.png',
submissionImage: './public/images/submissions/image-rose.png',
},
{
id: 3,
title: 'Tinfoild',
description: 'Firewall that blocks any outgoing traffic.',
url: '#',
votes: 5,
avatar: './public/images/avatars/veronika.jpg',
submissionImage: './public/images/submissions/image-steel.png',
},
{
id: 4,
title: 'Hoof or woof',
description: 'Tinder for pets.',
url: '#',
votes: 29,
avatar: './public/images/avatars/molly.png',
submissionImage: './public/images/submissions/image-aqua.png',
}
];
return { submissions: submissions };
}());