2023-05-25 18:34:59 +03:00
|
|
|
export const posts = [{
|
|
|
|
id: 'post-1',
|
|
|
|
title: 'Post 1',
|
|
|
|
slug: 'post-1',
|
|
|
|
featured: false,
|
|
|
|
published_at: new Date('2023-03-15T07:19:07.447Z')
|
|
|
|
}, {
|
|
|
|
id: 'post-2',
|
|
|
|
title: 'Post 2',
|
|
|
|
slug: 'post-2',
|
|
|
|
featured: false,
|
|
|
|
published_at: new Date('2023-04-05T07:20:07.447Z')
|
|
|
|
}, {
|
2023-06-01 14:16:24 +03:00
|
|
|
id: 'post-3-featured',
|
|
|
|
title: 'Featured Post 3',
|
|
|
|
slug: 'featured-post-3',
|
2023-05-25 18:34:59 +03:00
|
|
|
featured: true,
|
|
|
|
published_at: new Date('2023-05-25T07:21:07.447Z')
|
|
|
|
}];
|