| 1 |
const headings = [ |
| 2 |
{ |
| 3 |
id: "heading-01", |
| 4 |
jsonBlocks: { |
| 5 |
blockName: "core/heading", |
| 6 |
attrs: { |
| 7 |
className: "heading-modern", |
| 8 |
content: "Solutions web innovantes", |
| 9 |
level: 1, |
| 10 |
style: { |
| 11 |
typography: { |
| 12 |
fontSize: "48px", |
| 13 |
fontWeight: "800", |
| 14 |
lineHeight: "1.2", |
| 15 |
}, |
| 16 |
color: { |
| 17 |
text: "#1a1a1a", |
| 18 |
}, |
| 19 |
}, |
| 20 |
}, |
| 21 |
}, |
| 22 |
}, |
| 23 |
{ |
| 24 |
id: "heading-02", |
| 25 |
jsonBlocks: { |
| 26 |
blockName: "core/heading", |
| 27 |
attrs: { |
| 28 |
className: "heading-minimal", |
| 29 |
content: "Créez l'expérience web de demain", |
| 30 |
level: 2, |
| 31 |
style: { |
| 32 |
typography: { |
| 33 |
fontSize: "36px", |
| 34 |
fontWeight: "600", |
| 35 |
lineHeight: "1.3", |
| 36 |
}, |
| 37 |
color: { |
| 38 |
text: "#333333", |
| 39 |
}, |
| 40 |
}, |
| 41 |
}, |
| 42 |
}, |
| 43 |
}, |
| 44 |
{ |
| 45 |
id: "heading-03", |
| 46 |
jsonBlocks: { |
| 47 |
blockName: "core/heading", |
| 48 |
attrs: { |
| 49 |
className: "heading-accent", |
| 50 |
content: "Une approche unique", |
| 51 |
level: 3, |
| 52 |
style: { |
| 53 |
typography: { |
| 54 |
fontSize: "28px", |
| 55 |
fontWeight: "700", |
| 56 |
lineHeight: "1.4", |
| 57 |
}, |
| 58 |
color: { |
| 59 |
text: "#0066cc", |
| 60 |
}, |
| 61 |
}, |
| 62 |
}, |
| 63 |
}, |
| 64 |
}, |
| 65 |
]; |
| 66 |
|
| 67 |
export default headings; |
| 68 |
|