PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / 2.2.4
AI Builder – Generate pages, blocks, images & translate with AI v2.2.4
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 / timelines.js

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

206 lines 5.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const timelinesBlocks = [
2 {
3 id: "timeline-01",
4 jsonBlocks: {
5 blockName: "core/group",
6 attrs: {
7 align: "full",
8 className: "timeline-section timeline-style-vertical",
9 },
10 innerBlocks: [
11 {
12 blockName: "core/heading",
13 attrs: {
14 content: "Company Milestones",
15 level: 3,
16 className: "timeline-title",
17 textAlign: "center",
18 },
19 },
20 {
21 blockName: "core/group",
22 attrs: { className: "timeline-vertical" },
23 innerBlocks: [
24 {
25 blockName: "core/group",
26 attrs: { className: "timeline-event" },
27 innerBlocks: [
28 {
29 blockName: "core/heading",
30 attrs: {
31 content: "2018",
32 level: 4,
33 className: "timeline-date",
34 },
35 },
36 {
37 blockName: "core/paragraph",
38 attrs: {
39 content: "Company founded and first office opened.",
40 className: "timeline-desc ai-text-block",
41 },
42 },
43 ],
44 },
45 {
46 blockName: "core/group",
47 attrs: { className: "timeline-event" },
48 innerBlocks: [
49 {
50 blockName: "core/heading",
51 attrs: {
52 content: "2020",
53 level: 4,
54 className: "timeline-date",
55 },
56 },
57 {
58 blockName: "core/paragraph",
59 attrs: {
60 content: "Reached 1000 customers milestone.",
61 className: "timeline-desc ai-text-block",
62 },
63 },
64 ],
65 },
66 {
67 blockName: "core/group",
68 attrs: { className: "timeline-event" },
69 innerBlocks: [
70 {
71 blockName: "core/heading",
72 attrs: {
73 content: "2022",
74 level: 4,
75 className: "timeline-date",
76 },
77 },
78 {
79 blockName: "core/paragraph",
80 attrs: {
81 content: "Launched our AI-powered platform.",
82 className: "timeline-desc ai-text-block",
83 },
84 },
85 ],
86 },
87 {
88 blockName: "core/group",
89 attrs: { className: "timeline-event" },
90 innerBlocks: [
91 {
92 blockName: "core/heading",
93 attrs: {
94 content: "2024",
95 level: 4,
96 className: "timeline-date",
97 },
98 },
99 {
100 blockName: "core/paragraph",
101 attrs: {
102 content: "Expanded to international markets.",
103 className: "timeline-desc ai-text-block",
104 },
105 },
106 ],
107 },
108 ],
109 },
110 ],
111 },
112 },
113 {
114 id: "timeline-02",
115 jsonBlocks: {
116 blockName: "core/group",
117 attrs: {
118 align: "full",
119 className: "timeline-section timeline-style-horizontal",
120 },
121 innerBlocks: [
122 {
123 blockName: "core/heading",
124 attrs: {
125 content: "Our Journey",
126 level: 3,
127 className: "timeline-title",
128 textAlign: "center",
129 },
130 },
131 {
132 blockName: "core/group",
133 attrs: { className: "timeline-horizontal" },
134 innerBlocks: [
135 {
136 blockName: "core/group",
137 attrs: { className: "timeline-event-horizontal" },
138 innerBlocks: [
139 {
140 blockName: "core/heading",
141 attrs: {
142 content: "2019",
143 level: 4,
144 className: "timeline-date",
145 },
146 },
147 {
148 blockName: "core/paragraph",
149 attrs: {
150 content: "First product launch.",
151 className: "timeline-desc ai-text-block",
152 },
153 },
154 ],
155 },
156 {
157 blockName: "core/group",
158 attrs: { className: "timeline-event-horizontal" },
159 innerBlocks: [
160 {
161 blockName: "core/heading",
162 attrs: {
163 content: "2021",
164 level: 4,
165 className: "timeline-date",
166 },
167 },
168 {
169 blockName: "core/paragraph",
170 attrs: {
171 content: "Opened new headquarters.",
172 className: "timeline-desc ai-text-block",
173 },
174 },
175 ],
176 },
177 {
178 blockName: "core/group",
179 attrs: { className: "timeline-event-horizontal" },
180 innerBlocks: [
181 {
182 blockName: "core/heading",
183 attrs: {
184 content: "2023",
185 level: 4,
186 className: "timeline-date",
187 },
188 },
189 {
190 blockName: "core/paragraph",
191 attrs: {
192 content: "Awarded Best Tech Startup.",
193 className: "timeline-desc ai-text-block",
194 },
195 },
196 ],
197 },
198 ],
199 },
200 ],
201 },
202 },
203 ];
204
205 export default timelinesBlocks;
206