forked from vercel/nextgram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotos.js
67 lines (66 loc) · 1.97 KB
/
photos.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const photos = [
{
id: '1',
name: 'Kevin Canlas',
href: 'https://twitter.com/kvncnls/status/1471832344986324998',
username: '@kvncnls',
imageSrc: 'https://pbs.twimg.com/media/FGz_t1wXIAIFyT-?format=jpg',
},
{
id: '2',
name: 'Pedro Duarte',
href: 'https://twitter.com/peduarte/status/1463897468383412231',
username: '@peduarte',
imageSrc: 'https://pbs.twimg.com/media/FFDOtLkWYAsWjTM?format=jpg',
},
{
id: '3',
name: 'Ahmad Awais',
href: 'https://twitter.com/MrAhmadAwais/status/1338151679083032577',
username: '@MrAhmadAwais',
imageSrc: 'https://pbs.twimg.com/media/EpIR281XIAMUrEM?format=jpg',
},
{
id: '4',
name: 'Leandro Soengas',
href: 'https://twitter.com/lsoengas/status/1352302741339693061',
username: '@lsoengas',
imageSrc: 'https://pbs.twimg.com/media/EsRYK8oWMAEkObV?format=jpg',
},
{
id: '5',
name: 'Samina',
href: 'https://twitter.com/saminacodes/status/1466479548837482497',
username: '@saminacodes',
imageSrc: 'https://pbs.twimg.com/media/FFn7X76VgAEVTgs?format=jpg',
},
{
id: '6',
name: 'lafond.eth',
href: 'https://twitter.com/laf0nd/status/1464640065615929346',
username: '@laf0nd',
imageSrc: 'https://pbs.twimg.com/media/FFNyYEAXsAMdOhV?format=jpg',
},
{
id: '7',
name: '山岸和利💛',
href: 'https://twitter.com/ykzts/status/1426358452356407297',
username: '@ykzts',
imageSrc: 'https://pbs.twimg.com/media/E8txb2yVkAQxRVw?format=jpg',
},
{
id: '8',
name: 'Altngelo',
href: 'https://twitter.com/AfterDarkAngelo/status/1456372859090075648',
username: '@AfterDarkAngelo',
imageSrc: 'https://pbs.twimg.com/media/FDYTZN1VIAAT-X1?format=jpg',
},
{
id: '9',
name: 'Matias Baldanza',
href: 'https://twitter.com/matiasbaldanza/status/1404834163203715073',
username: '@matiasbaldanza',
imageSrc: 'https://pbs.twimg.com/media/E374pyaWEAMCT2R?format=jpg',
},
];
export default photos;