pragma Singleton import QtQuick import qs.modules.nexus.common import qs.modules.nexus.pages import qs.modules.nexus.pages.audio import qs.modules.nexus.pages.bluetooth import qs.modules.nexus.pages.wallandstyle QtObject { id: root readonly property list pageComps: [ // Appearance Component { // Wallpaper & style StackPage { Component { WallpaperAndStyle {} } Component { WallpaperSelect {} } Component { WallpaperCategory {} } Component { ColourSelect {} } } }, // Connectivity Component { // Network StackPage { Component { NetworkPage {} } } }, Component { // Bluetooth StackPage { Component { BluetoothPage {} } Component { BtDeviceInfo {} } Component { BluetoothPairing {} } } }, Component { // Audio StackPage { Component { AudioPage {} } Component { AppVolumes {} } } } ] }