Skip to main content

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.

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

Example Usage

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

title
string
required
The title of the blacklisted page
subtitle
string
required
The subtitle of the blacklisted page
description
string
required
The description of the blacklisted page
button
Object
required