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/config.ts

50 lines
1 KiB
TypeScript
Raw Normal View History

2023-02-01 14:10:09 -05:00
export const APP = [{
name: "App Name",
website: "https://mycompany.net/",
support: "https://mycompany.net/help/",
sourcecode: "https://github.com/company/app-name"
}]
2023-02-07 16:46:24 -05:00
// Splash
export const SPLASH = [
{
loading: "Spinner", // "Spinner" "Pulse" "ProgressBar" "LogoOnly" "None"
background: "#121212"
}
]
// Sidebar
/// Top tabs of your sidbears
2023-02-01 14:10:09 -05:00
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",
},
]
2023-02-07 16:46:24 -05:00
/// Bottoms tabs of your sidebar
2023-02-01 14:10:09 -05:00
export const SIDEBARBOTTOM = [
{
text: "Settings",
page: "Settings",
icon: "fa-solid fa-sliders",
}
]