-
Notifications
You must be signed in to change notification settings - Fork 0
/
photolist.js
42 lines (40 loc) · 2.34 KB
/
photolist.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
//put a fake list of photos instead of hitting an api
const photolist = [
{id: 1,
photoURL: 'https://images.unsplash.com/photo-1665680521183-1a77175d81dd?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2ODA5MTMxMQ&ixlib=rb-1.2.1&q=80&w=1080',
description: 'overhead image of pine trees',
userName: 'Tree Hugger',
profilePhoto: 'https://randomuser.me/api/portraits/women/3.jpg'
},
{id: 2,
photoURL: 'https://images.unsplash.com/photo-1667344792187-6b3428082c8f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2ODA5MTQ3Mg&ixlib=rb-4.0.3&q=80&w=1080',
description: 'outdoor coffee shop with people ordering and walking on sidewalk',
userName: 'Caffeine Fiend',
profilePhoto: 'https://randomuser.me/api/portraits/men/3.jpg'
},
{id: 3,
photoURL: 'https://images.unsplash.com/photo-1666834531292-b2a746be5e7b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2ODA5MTU4MQ&ixlib=rb-4.0.3&q=80&w=1080',
description: 'Calm ocean beach scene with small waves breaking on shore',
userName: 'H20 = life',
profilePhoto: 'https://randomuser.me/api/portraits/women/10.jpg'
},
{id: 4,
photoURL: 'https://images.unsplash.com/photo-1667802694056-3dd951aba710?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2ODA5MTY0Nw&ixlib=rb-4.0.3&q=80&w=1080',
description: 'Overhead scene of Christmas gift on table with candle and decorations',
userName: 'bob',
profilePhoto: 'https://randomuser.me/api/portraits/men/10.jpg'
},
{id: 5,
photoURL: 'https://images.unsplash.com/photo-1666350652958-4125cbfe9163?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2ODA5MTc3Mg&ixlib=rb-4.0.3&q=80&w=1080',
description: 'Person with a pumkin carving on head leaning on fence',
userName: 'Pumkin Head',
profilePhoto: 'https://randomuser.me/api/portraits/women/20.jpg'
},
{id: 6,
photoURL: 'https://images.unsplash.com/photo-1659776026027-6b0f66d92675?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2ODA5MTgzMg&ixlib=rb-4.0.3&q=80&w=1080',
description: 'Metalic oil slick rendering',
userName: 'Art is life',
profilePhoto: 'https://randomuser.me/api/portraits/men/8.jpg'
},
]
export default photolist