diff --git a/app/components/Settings/BottomScreen/Background.vue b/app/components/Settings/BottomScreen/Background.vue new file mode 100644 index 0000000..87f3064 --- /dev/null +++ b/app/components/Settings/BottomScreen/Background.vue @@ -0,0 +1,13 @@ + diff --git a/app/components/Settings/BottomScreen/BottomScreen.vue b/app/components/Settings/BottomScreen/BottomScreen.vue new file mode 100644 index 0000000..88892f8 --- /dev/null +++ b/app/components/Settings/BottomScreen/BottomScreen.vue @@ -0,0 +1,13 @@ + + + diff --git a/app/components/Settings/TopScreen/Background.vue b/app/components/Settings/TopScreen/Background.vue new file mode 100644 index 0000000..ec3392d --- /dev/null +++ b/app/components/Settings/TopScreen/Background.vue @@ -0,0 +1,13 @@ + diff --git a/app/components/Settings/TopScreen/Calendar.vue b/app/components/Settings/TopScreen/Calendar.vue new file mode 100644 index 0000000..9cc65bc --- /dev/null +++ b/app/components/Settings/TopScreen/Calendar.vue @@ -0,0 +1,79 @@ + diff --git a/app/components/Settings/TopScreen/Clock.vue b/app/components/Settings/TopScreen/Clock.vue new file mode 100644 index 0000000..244443b --- /dev/null +++ b/app/components/Settings/TopScreen/Clock.vue @@ -0,0 +1,88 @@ + diff --git a/app/components/Settings/TopScreen/StatusBar.vue b/app/components/Settings/TopScreen/StatusBar.vue new file mode 100644 index 0000000..b820d69 --- /dev/null +++ b/app/components/Settings/TopScreen/StatusBar.vue @@ -0,0 +1,56 @@ + diff --git a/app/components/Settings/TopScreen/TopScreen.vue b/app/components/Settings/TopScreen/TopScreen.vue new file mode 100644 index 0000000..111d4a9 --- /dev/null +++ b/app/components/Settings/TopScreen/TopScreen.vue @@ -0,0 +1,13 @@ + + + diff --git a/app/pages/settings.vue b/app/pages/settings.vue new file mode 100644 index 0000000..b05a1f2 --- /dev/null +++ b/app/pages/settings.vue @@ -0,0 +1,17 @@ + + + diff --git a/app/stores/settings.ts b/app/stores/settings.ts new file mode 100644 index 0000000..f3f9564 --- /dev/null +++ b/app/stores/settings.ts @@ -0,0 +1,5 @@ +export const useSettingsStore = defineStore("settings", { + state: () => ({}), + + actions: {}, +});