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
|
import imgApi from 'ba-api/images';
import avatarApi from 'ba-api/avatars';
const connectionData = [
{
cover: imgApi[41],
avatar: avatarApi[6],
name: 'John Doe',
title: 'UX Designer',
connection: 203,
verified: false
},
{
cover: imgApi[4],
avatar: avatarApi[2],
name: 'Jane Doe',
title: 'Administrator',
connection: 10,
verified: true
},
{
cover: imgApi[42],
avatar: avatarApi[7],
name: 'James Doe',
title: 'Marketing',
connection: 18,
verified: false
},
{
cover: imgApi[8],
avatar: avatarApi[10],
name: 'Mickey Joe',
title: 'Teacher Lecture',
connection: 6,
verified: true
},
{
cover: imgApi[39],
avatar: avatarApi[5],
name: 'Janet Doe',
title: 'UI Designer',
connection: 18,
verified: false
},
{
cover: imgApi[49],
avatar: avatarApi[1],
name: 'Michele Joe',
title: 'Designer',
connection: 100,
verified: true
},
{
cover: imgApi[50],
avatar: avatarApi[9],
name: 'James Doe',
title: 'Programmer',
connection: 20,
verified: true
},
{
cover: imgApi[45],
avatar: avatarApi[8],
name: 'Jimmy Doe',
title: 'Interior Designer',
connection: 1,
verified: false
},
{
cover: imgApi[43],
avatar: avatarApi[3],
name: 'Maya Joe',
title: 'Contributor',
connection: 100,
verified: false
},
];
export default connectionData;
|