41 lines
No EOL
864 B
TypeScript
41 lines
No EOL
864 B
TypeScript
export const APP = [{
|
|
name: "App Name",
|
|
website: "https://mycompany.net/",
|
|
support: "https://mycompany.net/help/",
|
|
sourcecode: "https://github.com/company/app-name"
|
|
}]
|
|
|
|
// Top tabs of your sidbear
|
|
export const SIDEBARTOP = [
|
|
{
|
|
text: "Dashboard",
|
|
icon: "fa-solid fa-wand-magic-sparkles",
|
|
option: "active"
|
|
},
|
|
{
|
|
text: "Files",
|
|
icon: "fa-solid fa-folder-tree",
|
|
},
|
|
{
|
|
text: "Webview Demo",
|
|
icon: "fa-solid fa-globe",
|
|
},
|
|
{
|
|
text: "Webview Demo",
|
|
icon: "fa-solid fa-globe",
|
|
option: "has-navigation"
|
|
},
|
|
{
|
|
text: "iFrame Demo",
|
|
icon: "fa-solid fa-eye",
|
|
},
|
|
]
|
|
|
|
// Bottoms tabs of your sidebar
|
|
export const SIDEBARBOTTOM = [
|
|
{
|
|
text: "Settings",
|
|
page: "Settings",
|
|
icon: "fa-solid fa-sliders",
|
|
}
|
|
] |