> ## 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.

# Blacklisted

> An Object which contains all the information for the blacklisted page.

```js theme={null}
theme: SoftUI({
  blacklisted: {
    title: String,
    subtitle: String,
    description: String,
    button: {
      enabled: Boolean,
      text: String,
      link: String,
    },
  },
});
```

## Example Usage

```js theme={null}
theme: SoftUI({
  blacklisted: {
    title: "Blacklisted",
    subtitle: "Access denied",
    description:
      "Unfortunately it seems that you have been blacklisted from the dashboard.",
    button: {
      enabled: false,
      text: "Return",
      link: "https://google.com",
    },
  },
});
```

## Props

<ParamField path="title" type="string" required>
  The title of the blacklisted page
</ParamField>

<ParamField path="subtitle" type="string" required>
  The subtitle of the blacklisted page
</ParamField>

<ParamField path="description" type="string" required>
  The description of the blacklisted page
</ParamField>

<ResponseField name="button" type="Object" required>
  <Expandable title="properties" defaultOpen>
    <ResponseField name="enabled" type="boolean" required>
      Indicate if the button should be enabled
    </ResponseField>

    <ResponseField name="text" type="string">
      The text of the button
    </ResponseField>

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