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
2023-02-11 11:03:51 -05:00

57 lines
No EOL
1.2 KiB
TypeScript

export const APP = [{
name: "App Name",
website: "https://mycompany.net/",
support: "https://mycompany.net/help/",
sourcecode: "https://github.com/company/app-name"
}]
// Splash
export const SPLASH = [
{
loading: "Spinner", // "Spinner" "ProgressBar" "JumpingBalls" "GlowingBars"
background: "#232323"
}
]
// Sidebar
/// Theming
export const SIDEBARTHEMING = [{
// Edit the "Configuration for Theming" section in the `styles/index.scss`.
}]
/// 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",
icon: "fa-solid fa-globe",
option: "has-navigation",
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",
}
]