| 1 |
const listMetadata = [ |
| 2 |
{ |
| 3 |
id: "list-01", |
| 4 |
type: "list", |
| 5 |
style: ["bullet", "features"], |
| 6 |
description: |
| 7 |
"Centered bullet list with main title and four key points. Clean design on white background. Perfect for presenting main product or service features.", |
| 8 |
}, |
| 9 |
{ |
| 10 |
id: "list-02", |
| 11 |
type: "list", |
| 12 |
style: ["numbered", "steps"], |
| 13 |
description: |
| 14 |
"Centered numbered list with main title and four process steps. Light gray background for subtle contrast. Ideal for explaining a process or procedure step by step.", |
| 15 |
}, |
| 16 |
{ |
| 17 |
id: "list-03", |
| 18 |
type: "list", |
| 19 |
style: ["icon", "services"], |
| 20 |
description: |
| 21 |
"Icon-based centered list with main title and four services. Modern design on white background. Perfect for presenting a range of services or offerings.", |
| 22 |
}, |
| 23 |
]; |
| 24 |
|
| 25 |
export default listMetadata; |
| 26 |
|