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

# Premium

> An Object which contains all the premium information.

```js theme={null}
theme: SoftUI({
  premium: {
    enabled: Boolean,
    card: {
      title: String,
      description: String,
      bgImage: String,
      button: {
        text: String,
        url: String,
      },
    },
  },
});
```

## Example Usage

```js theme={null}
theme: SoftUI({
  premium: {
    enabled: true,
    card: {
      title: "Want more from Assistants?",
      description: "Check out premium features below!",
      bgImage:
        "https://assistantscenter.com/wp-content/uploads/2021/11/cropped-cropped-logov6.png",
      button: {
        text: "Become Premium",
        url: "https://patreon.com/sharkybot",
      },
    },
  },
});
```

<Note>This is NOT visible on the main. Only in the servers pages.</Note>

## Image

<Frame>
  <img src="https://mintcdn.com/assistantscenter/e0fzjuWUPc5-sSJC/images/content/premium.jpg?fit=max&auto=format&n=e0fzjuWUPc5-sSJC&q=85&s=997d4e9a1f6ed363eb54f367d5c33c29" width="297" height="323" data-path="images/content/premium.jpg" />
</Frame>

## Props

<ResponseField name="enabled" type="boolean" required>
  Indicate if the premium card should be enabled
</ResponseField>

<ResponseField name="card" type="Object">
  <Expandable title="properties" defaultOpen>
    <ResponseField name="title" type="string" required>
      The title of the premium card
    </ResponseField>

    <ResponseField name="description" type="string" required>
      The description of the premium card
    </ResponseField>

    <ResponseField name="bgImage" type="string" required>
      The background image of the premium card
    </ResponseField>

    <ResponseField name="button" type="Object" required>
      <Expandable title="properties" defaultOpen>
        <ResponseField name="text" type="string" required>
          The text of the button
        </ResponseField>

        <ResponseField name="url" type="string" required>
          The link of the button
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>
