diff --git a/app/error.vue b/app/error.vue
index 6ae33a5..f92f7f0 100644
--- a/app/error.vue
+++ b/app/error.vue
@@ -50,7 +50,7 @@
text-color="#FFFFFF"
@click="handleError"
>
-
+
@@ -93,6 +93,10 @@ const isLoading = ref(true)
const errorTitle = ref('')
const errorMsg = ref('')
+const gameDataStore = useGameDataStore()
+const { gameData } = storeToRefs(gameDataStore)
+const gameName = computed(() => gameData.value?.game_name)
+
//error clear 함수 생성
const localePath = useLocalePath()
diff --git a/layers/components/layouts/Footer.vue b/layers/components/layouts/Footer.vue
index 3172b4d..db98c31 100644
--- a/layers/components/layouts/Footer.vue
+++ b/layers/components/layouts/Footer.vue
@@ -23,7 +23,7 @@
{{ footerMenuItem.title }}
-
+