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

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

97 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const faqs = [
2 {
3 id: "faq-01",
4 jsonBlocks: {
5 blockName: "core/group",
6 attrs: {
7 align: "full",
8 className: "faq-list faq-group-margin",
9 },
10 innerBlocks: [
11 {
12 blockName: "core/heading",
13 attrs: {
14 content: "Frequently Asked Questions",
15 level: 2,
16 className: "faq-title",
17 },
18 },
19 {
20 blockName: "core/details",
21 attrs: {
22 summary: "What if I just had renovation work done?",
23 className: "faq-item",
24 },
25 innerBlocks: [
26 {
27 blockName: "core/paragraph",
28 attrs: {
29 content:
30 "We offer specialized post-renovation cleaning services. Our team is equipped to handle construction dust, debris, and thorough cleaning after renovation work.",
31 className: "faq-question ai-text-block",
32 },
33 isSummary: true,
34 },
35 ],
36 },
37 {
38 blockName: "core/details",
39 attrs: {
40 summary: "Do I get a discount if I'm a frequent customer?",
41 className: "faq-item",
42 },
43 innerBlocks: [
44 {
45 blockName: "core/paragraph",
46 attrs: {
47 content:
48 "Yes! We offer a 10% discount for weekly bookings and 15% for bi-weekly regular customers. Loyalty rewards increase with continued service.",
49 className: "faq-question ai-text-block",
50 },
51 isSummary: true,
52 },
53 ],
54 },
55 {
56 blockName: "core/details",
57 attrs: {
58 summary: "What if I don't have a mop, bucket, or vacuum?",
59 className: "faq-item",
60 },
61 innerBlocks: [
62 {
63 blockName: "core/paragraph",
64 attrs: {
65 content:
66 "Our cleaners bring all necessary equipment and supplies. Just let us know in advance, and we'll ensure everything is provided for a thorough cleaning.",
67 className: "faq-question ai-text-block",
68 },
69 isSummary: true,
70 },
71 ],
72 },
73 {
74 blockName: "core/details",
75 attrs: {
76 summary: "Do you clean offices and other commercial spaces?",
77 className: "faq-item",
78 },
79 innerBlocks: [
80 {
81 blockName: "core/paragraph",
82 attrs: {
83 content:
84 "Yes, we provide comprehensive cleaning services for offices, retail spaces, and commercial properties. We offer flexible scheduling and customized cleaning plans.",
85 className: "faq-question ai-text-block",
86 },
87 isSummary: true,
88 },
89 ],
90 },
91 ],
92 },
93 },
94 ];
95
96 export default faqs;
97