# ai-builder/2.2.2/assets/JSON-Blocks/faqs.js

AI Builder – Generate pages, blocks, images &amp; translate with AI, version 2.2.2. 97 lines.

- Page: https://pluginprobe.com/plugins/ai-builder/2.2.2/code/assets/JSON-Blocks/faqs.js
- Raw: https://pluginprobe.com/plugins/ai-builder/2.2.2/raw/assets/JSON-Blocks/faqs.js
- Modified: 2025-08-23T08:19:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ai-builder/2.2.2/code/assets/JSON-Blocks/faqs.js#L10-L20`.

```javascript
const faqs = [
  {
    id: "faq-01",
    jsonBlocks: {
      blockName: "core/group",
      attrs: {
        align: "full",
        className: "faq-list faq-group-margin",
      },
      innerBlocks: [
        {
          blockName: "core/heading",
          attrs: {
            content: "Frequently Asked Questions",
            level: 2,
            className: "faq-title",
          },
        },
        {
          blockName: "core/details",
          attrs: {
            summary: "What if I just had renovation work done?",
            className: "faq-item",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "We offer specialized post-renovation cleaning services. Our team is equipped to handle construction dust, debris, and thorough cleaning after renovation work.",
                className: "faq-question ai-text-block",
              },
              isSummary: true,
            },
          ],
        },
        {
          blockName: "core/details",
          attrs: {
            summary: "Do I get a discount if I'm a frequent customer?",
            className: "faq-item",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "Yes! We offer a 10% discount for weekly bookings and 15% for bi-weekly regular customers. Loyalty rewards increase with continued service.",
                className: "faq-question ai-text-block",
              },
              isSummary: true,
            },
          ],
        },
        {
          blockName: "core/details",
          attrs: {
            summary: "What if I don't have a mop, bucket, or vacuum?",
            className: "faq-item",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "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.",
                className: "faq-question ai-text-block",
              },
              isSummary: true,
            },
          ],
        },
        {
          blockName: "core/details",
          attrs: {
            summary: "Do you clean offices and other commercial spaces?",
            className: "faq-item",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "Yes, we provide comprehensive cleaning services for offices, retail spaces, and commercial properties. We offer flexible scheduling and customized cleaning plans.",
                className: "faq-question ai-text-block",
              },
              isSummary: true,
            },
          ],
        },
      ],
    },
  },
];

export default faqs;

```
