1
Fork 0
This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/astro/tabs.ts

40 lines
761 B
TypeScript
Raw Normal View History

2023-07-10 08:14:49 -04:00
// Sidebar Header
export const SIDEBARHEADER = [
// TODO
]
2023-02-13 13:56:29 -05:00
/// 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",
}
]