| 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 |
|