46 lines
No EOL
908 B
TypeScript
Executable file
46 lines
No EOL
908 B
TypeScript
Executable file
// Global Sidebar Options
|
|
export const SIDEBAR = [{
|
|
hide: false, // Toggle the "Toggle Sidebar" button by default
|
|
}]
|
|
|
|
// Sidebar Header
|
|
export const SIDEBARHEADER = [{
|
|
toggle: true,
|
|
search: true
|
|
}]
|
|
|
|
/// Top tabs of your sidbears
|
|
export const SIDEBARTOP = [
|
|
{
|
|
text: "Dashboard",
|
|
icon: "fa-solid fa-wand-magic-sparkles",
|
|
option: "active",
|
|
default: true
|
|
},
|
|
{
|
|
text: "Files",
|
|
icon: "fa-solid fa-folder-tree"
|
|
},
|
|
{
|
|
text: "Webview Demo",
|
|
icon: "fa-solid fa-globe"
|
|
},
|
|
{
|
|
text: "Webview Demo 2",
|
|
icon: "fa-solid fa-globe",
|
|
navigation: true
|
|
},
|
|
{
|
|
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",
|
|
}
|
|
] |