-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmockData.js
More file actions
127 lines (127 loc) · 4.38 KB
/
mockData.js
File metadata and controls
127 lines (127 loc) · 4.38 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
export const mockBlogPosts = [
{
id: 1,
name: 'How to break your ankle and still smile',
absoluteUrl: 'https://test-domain/blog/01-01-2023/broken-ankles',
featuredImage:
'https://www.mayoclinic.org/-/media/kcms/gbs/patient-consumer/images/2013/08/26/11/10/ds00951_im03497_r7_footanklethu_jpg.jpg',
featuredImageWidth: 632,
featuredImageHeight: 585,
featuredImageAltText: 'Bone structure of a foot',
blogAuthor: {
avatar:
'https://cdn3.iconfinder.com/data/icons/avatars-9/145/Avatar_Cat-512.png',
name: 'Brandon Van Dyck',
displayName: 'Brandon Van Dyck',
slug: 'brandonvandyck',
},
tagList: [
{
name: 'Feet',
slug: 'feet',
},
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
"<h3>Ankles may break, but spirits don't have to</h3> <p>Find out why a broken bone does not mean frowns all around.</p>",
},
{
id: 2,
name: 'E-Bikes: A Guide to Building and Riding',
absoluteUrl: 'https://test-domain/blog/01-02-2023/ebikes',
featuredImage:
'https://pedegoelectricbikes.com/wp-content/uploads/2020/12/pedego-ridge-rider-classic-600x494.jpg',
featuredImageWidth: 600,
featuredImageHeight: 494,
featuredImageAltText: 'Electric bike',
blogAuthor: {
avatar:
'https://cdn3.iconfinder.com/data/icons/avatars-9/145/Avatar_Cat-512.png',
name: 'Joey Blake',
displayName: 'Joey Blake',
slug: 'jblake',
},
tagList: [
{
name: 'Bikes',
slug: 'bikes',
},
{
name: 'Electricity',
slug: 'electricity',
},
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
'<h3>Bikes were traditionally powered by calories -- no more!</h3> <p>Experience the joy of electricity powered movement.</p>',
},
{
id: 3,
name: 'Mesh Wifi: Boost your home wifi experience',
absoluteUrl: 'https://test-domain/blog/01-03-2023/wifi',
featuredImage:
'https://m.media-amazon.com/images/I/41bMo8AYiML._AC_SY1000_.jpg',
featuredImageWidth: 500,
featuredImageHeight: 500,
featuredImageAltText: 'Home with mesh wifi ',
blog_avatar: 'https://cdn-icons-png.flaticon.com/512/3093/3093444.png',
blogAuthor: {
avatar:
'https://cdn3.iconfinder.com/data/icons/avatars-9/145/Avatar_Cat-512.png',
name: 'Wifi Willy',
displayName: 'Wilfred Wilhelm Wifi',
slug: 'wwifi',
},
tagList: [
{
name: 'Wifi',
slug: 'wifi',
},
{
name: 'Mesh',
slug: 'mesh',
},
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
'<h3>【Eliminate WiFi Dead Spots】Cover more than 6000 square feet from garage to backyard, seamless single WiFi name for whole house.</h3> <p>Easy to expand the coverage by install 3 pack mesh system, simply setup mesh to eliminate WiFi dead spots. Support up to 9 dots to build WiFi system for any home size</p>',
},
{
id: 4,
name: 'Being a Chef: To live amongst flame',
absoluteUrl: 'https://test-domain/blog/01-04-2023/being-a-chef',
featuredImage:
'https://www.finedininglovers.com/sites/g/files/xknfdk626/files/2021-07/chef%20%281%29.jpg',
featuredImageWidth: 1221,
featuredImageHeight: 814,
featuredImageAltText: 'Chef using alcohol and fire to cook a dish',
blog_avatar: 'https://cdn-icons-png.flaticon.com/512/3093/3093444.png',
blogAuthor: {
avatar: '',
name: 'Chef Knife',
displayName: 'Chefred Knifer',
slug: 'chefredknifer',
},
tagList: [
{
name: 'Chef',
slug: 'chef',
},
{
name: 'Fire',
slug: 'fire',
},
],
parentBlog: {},
publishDate: 1756388800000,
publishDateLocalized: 'Jun 30, 2022 12:00:00 AM',
postListContent:
"<h3>Being a Chef</h3> <p>As much as restaurants are driven by chefs' desire to feed and entertain, and to express themselves, to produce the best possible food, delivered with impeccable service, they are, when it comes down to it, businesses and every chef that wants to be successful must get a handle on that side of things. It is perhaps the most important factor for longevity.</p>",
},
];