Example Usage
Props
string
required
The title of the blacklisted page
string
required
The subtitle of the blacklisted page
string
required
The description of the blacklisted page
Object
required
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
An Object which contains all the information for the blacklisted page.
theme: SoftUI({
blacklisted: {
title: String,
subtitle: String,
description: String,
button: {
enabled: Boolean,
text: String,
link: String,
},
},
});
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",
},
},
});
Was this page helpful?