# ai-builder/2.2.3/assets/JSON-Blocks/headings.js

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

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

```javascript
const headings = [
  {
    id: "heading-01",
    jsonBlocks: {
      blockName: "core/heading",
      attrs: {
        className: "heading-modern",
        content: "Solutions web innovantes",
        level: 1,
        style: {
          typography: {
            fontSize: "48px",
            fontWeight: "800",
            lineHeight: "1.2",
          },
          color: {
            text: "#1a1a1a",
          },
        },
      },
    },
  },
  {
    id: "heading-02",
    jsonBlocks: {
      blockName: "core/heading",
      attrs: {
        className: "heading-minimal",
        content: "Créez l'expérience web de demain",
        level: 2,
        style: {
          typography: {
            fontSize: "36px",
            fontWeight: "600",
            lineHeight: "1.3",
          },
          color: {
            text: "#333333",
          },
        },
      },
    },
  },
  {
    id: "heading-03",
    jsonBlocks: {
      blockName: "core/heading",
      attrs: {
        className: "heading-accent",
        content: "Une approche unique",
        level: 3,
        style: {
          typography: {
            fontSize: "28px",
            fontWeight: "700",
            lineHeight: "1.4",
          },
          color: {
            text: "#0066cc",
          },
        },
      },
    },
  },
];

export default headings;

```
