mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
34 lines
816 B
JavaScript
Executable File
34 lines
816 B
JavaScript
Executable File
import AppSettings from "./app"
|
|
import AccountSettings from "./account"
|
|
import SecuritySettings from "./security"
|
|
import NotificationsSettings from "./notifications"
|
|
import ApparenceSettings from "./apparence"
|
|
//import ExtensionsSettings from "./extensions"
|
|
|
|
export default {
|
|
app: {
|
|
icon: "Command",
|
|
label: "App",
|
|
settings: AppSettings
|
|
},
|
|
account: {
|
|
icon: "User",
|
|
label: "Profile",
|
|
settings: AccountSettings
|
|
},
|
|
apparence: {
|
|
icon: "Eye",
|
|
label: "Apparence",
|
|
settings: ApparenceSettings
|
|
},
|
|
security: {
|
|
icon: "Shield",
|
|
label: "Security",
|
|
settings: SecuritySettings
|
|
},
|
|
notifications: {
|
|
icon: "Bell",
|
|
label: "Notifications",
|
|
settings: NotificationsSettings
|
|
},
|
|
} |