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

57 lines
1.2 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" "ProgressBar" "JumpingBalls" "GlowingBars"
background: "#232323"
2023-02-07 16:46:24 -05:00
}
]
// Sidebar
2023-02-11 11:03:51 -05:00
/// Theming
export const SIDEBARTHEMING = [{
// Edit the "Configuration for Theming" section in the `styles/index.scss`.
}]
2023-02-07 16:46:24 -05:00
/// 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",
2023-02-09 17:28:07 -05:00
option: "active",
default: true
2023-02-01 14:10:09 -05:00
},
{
text: "Files",
2023-02-09 17:28:07 -05:00
icon: "fa-solid fa-folder-tree"
2023-02-01 14:10:09 -05:00
},
{
text: "Webview Demo",
2023-02-09 17:28:07 -05:00
icon: "fa-solid fa-globe"
2023-02-01 14:10:09 -05:00
},
{
text: "Webview Demo",
icon: "fa-solid fa-globe",
2023-02-09 17:28:07 -05:00
option: "has-navigation",
navigation: true
2023-02-01 14:10:09 -05:00
},
{
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",
}
]