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
79
80
81
82
|
import imgApi from './images';
const imgData = [
{
img: imgApi[3],
thumb: imgApi[3],
title: 'Breakfast',
author: 'jill111',
cols: 2,
featured: true,
},
{
img: imgApi[5],
thumb: imgApi[5],
title: 'Tasty burger',
author: 'director90',
},
{
img: imgApi[33],
thumb: imgApi[33],
title: 'Camera',
author: 'Danson67',
},
{
img: imgApi[35],
thumb: imgApi[35],
title: 'Morning',
author: 'fancycrave1',
featured: true,
},
{
img: imgApi[41],
thumb: imgApi[41],
title: 'Hats',
author: 'Hans',
},
{
img: imgApi[43],
thumb: imgApi[43],
title: 'Honey',
author: 'fancycravel',
},
{
img: imgApi[7],
thumb: imgApi[7],
title: 'Vegetables',
author: 'jill111',
cols: 2,
},
{
img: imgApi[9],
thumb: imgApi[9],
title: 'Water plant',
author: 'BkrmadtyaKarki',
},
{
img: imgApi[17],
thumb: imgApi[17],
title: 'Mushrooms',
author: 'PublicDomainPictures',
},
{
img: imgApi[13],
thumb: imgApi[13],
title: 'Olive oil',
author: 'congerdesign',
},
{
img: imgApi[19],
thumb: imgApi[19],
title: 'Sea star',
cols: 2,
author: '821292',
},
{
img: imgApi[47],
thumb: imgApi[47],
title: 'Bike',
author: 'danfador',
},
];
export default imgData;
|