| 1 |
const paragraphsMetadata = [ |
| 2 |
{ |
| 3 |
id: "paragraph-01", |
| 4 |
type: "paragraph", |
| 5 |
style: ["modern", "main"], |
| 6 |
description: |
| 7 |
"Main paragraph with medium-sized presentation text (18px) and optimal spacing. Dark gray color for excellent readability. Ideal for introductory texts or main descriptions.", |
| 8 |
}, |
| 9 |
{ |
| 10 |
id: "paragraph-02", |
| 11 |
type: "paragraph", |
| 12 |
style: ["accent", "italic"], |
| 13 |
description: |
| 14 |
"Accent paragraph in italic with standard size (16px) and airy spacing. Medium gray color for subtle contrast. Perfect for quotes or secondary texts.", |
| 15 |
}, |
| 16 |
{ |
| 17 |
id: "paragraph-03", |
| 18 |
type: "paragraph", |
| 19 |
style: ["feature", "checklist"], |
| 20 |
description: |
| 21 |
"Feature paragraph with checkmarks (✓) and double spacing. Dark gray color for good readability. Ideal for feature lists or benefits.", |
| 22 |
}, |
| 23 |
{ |
| 24 |
id: "paragraph-04", |
| 25 |
type: "paragraph", |
| 26 |
style: ["list", "bullets"], |
| 27 |
description: |
| 28 |
"Bullet point paragraph (•) with double spacing. Deep blue-gray color for a professional style. Perfect for feature lists or key points.", |
| 29 |
}, |
| 30 |
{ |
| 31 |
id: "paragraph-05", |
| 32 |
type: "paragraph", |
| 33 |
style: ["highlight", "cta"], |
| 34 |
description: |
| 35 |
"Highlighted paragraph with emoji, bold text and light gray background. Larger size (20px) and distinctive blue color. Ideal for calls to action or important messages.", |
| 36 |
}, |
| 37 |
]; |
| 38 |
|
| 39 |
export default paragraphsMetadata; |
| 40 |
|