diff --git a/components/Settings/AppSettings/index.ts b/components/Settings/AppSettings/index.ts new file mode 100644 index 0000000..27890a5 --- /dev/null +++ b/components/Settings/AppSettings/index.ts @@ -0,0 +1,11 @@ +import Appearance from './Appearance.vue'; +import Notifications from './Notifications.vue'; +import Keybinds from './Keybinds.vue'; +import Language from './Language.vue'; + +export { + Appearance, + Notifications, + Keybinds, + Language, +} \ No newline at end of file diff --git a/components/Settings/UserSettings/index.ts b/components/Settings/UserSettings/index.ts new file mode 100644 index 0000000..b2129e0 --- /dev/null +++ b/components/Settings/UserSettings/index.ts @@ -0,0 +1,13 @@ +import Profile from './Profile.vue'; +import Account from './Account.vue'; +import Privacy from './Privacy.vue'; +import Devices from './Devices.vue'; +import Connections from './Connections.vue'; + +export { + Profile, + Account, + Privacy, + Devices, + Connections, +} \ No newline at end of file diff --git a/pages/settings.vue b/pages/settings.vue index 8b270bc..ae9745a 100644 --- a/pages/settings.vue +++ b/pages/settings.vue @@ -46,9 +46,13 @@