+
diff --git a/app/pages/index.vue b/app/pages/index.vue
index b271480..6f5795c 100644
--- a/app/pages/index.vue
+++ b/app/pages/index.vue
@@ -1,19 +1,18 @@
-
diff --git a/app/stores/app.ts b/app/stores/app.ts
new file mode 100644
index 0000000..c7bf489
--- /dev/null
+++ b/app/stores/app.ts
@@ -0,0 +1,15 @@
+import { defineStore } from 'pinia'
+import { ref } from 'vue'
+
+export const useAppStore = defineStore('app', () => {
+ const isAppLoading = ref(true)
+
+ const setAppLoading = (loading: boolean) => {
+ isAppLoading.value = loading
+ }
+
+ return {
+ isAppLoading,
+ setAppLoading,
+ }
+})