| 1 |
const headingsMetadata = [ |
| 2 |
{ |
| 3 |
id: "heading-01", |
| 4 |
type: "heading", |
| 5 |
style: ["modern", "hero"], |
| 6 |
description: |
| 7 |
"Modern main title (H1) with extra-bold font and large size. Deep black text for optimal contrast. Perfect for homepage titles or main sections.", |
| 8 |
}, |
| 9 |
{ |
| 10 |
id: "heading-02", |
| 11 |
type: "heading", |
| 12 |
style: ["minimal", "section"], |
| 13 |
description: |
| 14 |
"Section title (H2) with minimalist style and semi-bold font. Medium size and dark gray color. Ideal for subsections or main content titles.", |
| 15 |
}, |
| 16 |
{ |
| 17 |
id: "heading-03", |
| 18 |
type: "heading", |
| 19 |
style: ["accent", "subtitle"], |
| 20 |
description: |
| 21 |
"Accent title (H3) with bold font and distinctive blue color. Smaller size for clear visual hierarchy. Perfect for subtitles or emphasis points.", |
| 22 |
}, |
| 23 |
]; |
| 24 |
|
| 25 |
export default headingsMetadata; |
| 26 |
|