-
Notifications
You must be signed in to change notification settings - Fork 5
/
blog-cards-data.ts
35 lines (32 loc) · 1.14 KB
/
blog-cards-data.ts
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
export interface blogcard {
title: string,
subtitle: string,
subtext: string,
image: string
}
export const blogcards: blogcard[] = [
{
title: 'This is simple blog',
subtitle: '2 comments, 1 Like',
subtext: 'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'assets/images/bg/bg1.jpg'
},
{
title: 'This is simple blog',
subtitle: '2 comments, 1 Like',
subtext: 'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'assets/images/bg/bg2.jpg'
},
{
title: 'This is simple blog',
subtitle: '2 comments, 1 Like',
subtext: 'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'assets/images/bg/bg3.jpg'
},
{
title: 'This is simple blog',
subtitle: '2 comments, 1 Like',
subtext: 'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'assets/images/bg/bg4.jpg'
},
]