> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Presets

> Detailed documentation about section presets configuration.

## Properties

<ParamField path="name" type="string" required>
  The preset name displayed in the theme editor.
</ParamField>

<ParamField path="settings" type="object">
  Default values for section settings to pre-populate.
</ParamField>

<ParamField path="blocks" type="array">
  Default blocks included in the preset. Each block must specify its type and settings.
</ParamField>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "presets": [
          {
            "name": "Image slideshow",
            "settings": {
              "autoplay": true,
              "speed": 5,
              "transition": "slide"
            },
            "blocks": [
              {
                "type": "slide",
                "settings": {
                  "heading": "Welcome to our store",
                  "text": "<p>Check out our latest products</p>"
                }
              },
              {
                "type": "slide",
                "settings": {
                  "heading": "Featured collection",
                  "text": "<p>Shop our bestsellers</p>"
                }
              }
            ]
          },
          {
            "name": "Video slideshow",
            "settings": {
              "autoplay": true,
              "speed": 7
            },
            "blocks": [
              {
                "type": "video",
                "settings": {
                  "video_url": "https://www.youtube.com/watch?v=example"
                }
              }
            ]
          }
        ]
      }
      ```
    </Tab>
  </Tabs>
</Panel>
