-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
51 lines (50 loc) · 1.24 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
const dogs = [
{
name: "Rex",
avatar: "images/dog-rex.png",
age: 25,
bio: "Art. Literature. Natural wine. Yoga.",
hasBeenSwiped: false,
hasBeenLiked: false
},{
name: "Bella",
avatar: "images/dog-bella.png",
age: 43,
bio: "Yup, that's my owner. U can meet him if you want",
hasBeenSwiped: false,
hasBeenLiked: false
},
{
name: "Teddy",
avatar: "images/dog-teddy.png",
age: 30,
bio: "How you doin?",
hasBeenSwiped: false,
hasBeenLiked: false
},
{
name: "Luna",
avatar: "images/dog-luna.png",
age: 18,
bio: "I love chasing squirrels and playing fetch!",
hasBeenSwiped: false,
hasBeenLiked: false
},
{
name: "Max",
avatar: "images/dog-max.png",
age: 5,
bio: "I'm a friendly pup who loves meeting new people!",
hasBeenSwiped: false,
hasBeenLiked: false
},
{
name: "Rocky",
avatar: "images/dog-rocky.png",
age: 8,
bio: "I'm a loyal companion who loves long walks and belly rubs!",
hasBeenSwiped: false,
hasBeenLiked: false
}
]
export default dogs