1
0
forked from noxious/client

Replaced character placeholder values in userpanel, more work on settings

This commit is contained in:
2024-08-31 19:07:25 +02:00
parent f8f367fb6e
commit e87c23111e
3 changed files with 39 additions and 17 deletions

View File

@ -5,9 +5,9 @@
<div class="flex justify-center items-center flex-wrap gap-20">
<div class="flex gap-3 mt-2 flex-wrap max-w-[375px]">
<div class="h-full flex flex-col justify-center items-center">
<h3>Ethereal</h3>
<h3>{{ gameStore.character?.name }}</h3>
<img class="h-60 my-2 mx-auto" src="/assets/placeholders/inventory_player.png" />
<span class="block text-sm">Level 69</span>
<span class="block text-sm">Level {{ gameStore.character?.level }}</span>
</div>
</div>
<div class="flex flex-col gap-3 mx-5 mt-2">
@ -80,4 +80,11 @@
</div>
</div>
</div>
</template>
</template>
<script setup lang="ts">
import { useGameStore } from '@/stores/game'
const gameStore = useGameStore()
</script>