-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlushCardData.js
36 lines (35 loc) · 1.12 KB
/
lushCardData.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
const lushCardData = [
{ background: '#F5EDCE', title: 'G-design', paragraph: 'Lorem ipsum dolar' },
{
background: '#89C4E1',
title: 'Blue ocean',
paragraph: 'consectetur adipiscing elit',
},
{ background: '#58287F', title: 'Pr plume', paragraph: 'x ea commodo' },
{
background: '#000000',
title: 'Dark Knight',
paragraph: 'Duis aute irure dol',
},
{ background: '#F5EDCE', title: 'S-design', paragraph: 'Lorem ipsum dolar' },
{
background: '#89C4E1',
title: 'Blue ocean delux',
paragraph: 'consectetur adipiscing elit',
},
{ background: '#58287F', title: 'Pr plume epic', paragraph: 'x ea commodo' },
{
background: '#000000',
title: 'Dark Knight rise',
paragraph: 'Duis aute irure dol',
},
{ background: '#F5EDCE', title: 'U-design', paragraph: 'Lorem ipsum dolar' },
{
background: '#89C4E1',
title: 'Blue ocean supreme',
paragraph: 'consectetur adipiscing elit',
},
{ background: '#58287F', title: 'Pr plume', paragraph: 'x ea commodo' },
{ background: '#000000', title: 'Batman', paragraph: 'Duis aute irure dol' },
];
export default lushCardData;