feat. i18n 설정
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
<!-- 메인 네비게이션 -->
|
||||
|
||||
Reference in New Issue
Block a user