PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / 2.2.2
AI Builder – Generate pages, blocks, images & translate with AI v2.2.2
2.7.10 2.7.9 2.7.8 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.3.10 All 122 releases
ai-builder / assets / JSON-Blocks / headings.js

headings.js in AI Builder – Generate pages, blocks, images & translate with AI 2.2.2, at assets/JSON-Blocks/headings.js

68 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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