# ai-builder/2.7.2/assets/JSON-Blocks/citation.js

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

- Page: https://pluginprobe.com/plugins/ai-builder/2.7.2/code/assets/JSON-Blocks/citation.js
- Raw: https://pluginprobe.com/plugins/ai-builder/2.7.2/raw/assets/JSON-Blocks/citation.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.7.2/code/assets/JSON-Blocks/citation.js#L10-L20`.

```javascript
const citationBlocks = [
  {
    id: "citation-01",
    jsonBlocks: {
      blockName: "core/group",
      attrs: {
        align: "center",
        className: "citation-container citation-modern",
        style: {
          color: {
            background: "#ffffff",
          },
        },
      },
      innerBlocks: [
        {
          blockName: "core/quote",
          attrs: {
            className: "citation-content",
            citation: "John Doe, CEO",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "This platform has transformed how we handle our business operations. The efficiency and user-friendly interface are unmatched.",
                className: "ai-text-block",
              },
            },
          ],
        },
      ],
    },
  },
  {
    id: "citation-02",
    jsonBlocks: {
      blockName: "core/group",
      attrs: {
        align: "center",
        className: "citation-container citation-classic",
        style: {
          color: {
            background: "#f8f9fa",
          },
        },
      },
      innerBlocks: [
        {
          blockName: "core/quote",
          attrs: {
            className: "citation-content",
            citation: "Jane Smith, Marketing Director",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "The results we've achieved with this solution have exceeded our expectations. It's truly a game-changer for our industry.",
                className: "ai-text-block",
              },
            },
          ],
        },
      ],
    },
  },
  {
    id: "citation-03",
    jsonBlocks: {
      blockName: "core/group",
      attrs: {
        align: "center",
        className: "citation-container citation-minimal",
        style: {
          color: {
            background: "#ffffff",
          },
        },
      },
      innerBlocks: [
        {
          blockName: "core/quote",
          attrs: {
            className: "citation-content",
            citation: "Michael Johnson, Product Manager",
          },
          innerBlocks: [
            {
              blockName: "core/paragraph",
              attrs: {
                content:
                  "Innovation at its finest. This tool has streamlined our workflow and boosted productivity across all departments.",
                className: "ai-text-block",
              },
            },
          ],
        },
      ],
    },
  },
];

export default citationBlocks;

```
