Discord-dashboard free theme.
npm install theme-legendarybot
npm i dbd-capriham-theme
`
Docs
https://assistants.ga/dbd-docs/#/?id=capriham
Look
!image1
!image2
!image3
!image4
Usage
discord-dashboard config:
`js
const DBD = require('discord-dashboard');
const CaprihamTheme = require('dbd-capriham-theme');
const Dashboard = new DBD.Dashboard({
...
theme: CaprihamTheme({
websiteName: "Assistants",
iconURL: 'https://assistants.ga/ac_logo_v6.png',
index: {
card:{
title: "Assistants - The center of everything",
description: "Assistants Discord Bot management panel. Assistants Bot was created to give others the ability to do what they want. Just.
That's an example text.
Feel free to use HTML",
//image: "https://www.geeklawblog.com/wp-content/uploads/sites/528/2018/12/liprofile-656x369.png",
},
information: {
title: "Information",
description: "To manage your bot, go to the Server Management page.
For a list of commands, go to the Commands page.
You can use HTML there"
},
feeds: {
title: "Feeds",
list: [
{
icon: "fa fa-user",
text: "New user registered",
timeText: "Just now",
bg: "bg-light-info"
},
{
icon: "fa fa-server",
text: "Server issues",
timeText: "3 minutes ago",
bg: "bg-light-danger"
}
]
}
},
commands: {
pageTitle: "Commands",
table: {
title: "List",
subTitle: "All Assistants' commands",
list:
[
{
commandName: "Test command",
commandUsage: "prefix.test [op]",
commandDescription: "Lorem ipsum dolor sth"
},
{
commandName: "2nd command",
commandUsage: "oto.nd [op]",
commandDescription: "Lorem ipsum dolor sth, arg sth arg2 stuff"
}
]
}
}
}),
...
});
Dashboard.init();
``