feat. i18n 설정

This commit is contained in:
김채린
2025-09-09 04:09:54 +00:00
parent 9581e5d356
commit a3dee13089
45 changed files with 2929 additions and 2374 deletions

View File

@@ -1,3 +1,12 @@
<template>
<footer class="border-t p-4">Global Footer</footer>
<footer class="border-t p-4 bg-black">
<div class="flex items-center justify-between">
<div class="flex items-center">
<a href="/" class="text-white">로고</a>
</div>
<div class="flex items-center">
<AtomsLanguageSwitcher />
</div>
</div>
</footer>
</template>

View File

@@ -4,12 +4,16 @@ const gameData = computed(() => gameDataStore.gameData);
</script>
<template>
<header class="bg-gray-900 text-white relative z-50">
<header class="bg-black text-white relative z-50">
<LayoutStoveGnb />
<div class="px-[40px] h-16 flex items-center">
<!-- 로고 -->
<div class="mr-[40px]">
<img :src="gameData?.gnb?.bi_path" :alt="gameData?.game_name" />
<img
:src="gameData?.gnb?.bi_path"
:alt="gameData?.game_name"
class="h-[30px]"
/>
</div>
<!-- 메인 네비게이션 -->