route v1
All checks were successful
Deploy App / build (push) Successful in 2m25s
Deploy App / deploy (push) Successful in 15s

This commit is contained in:
valere
2025-10-21 00:09:26 +02:00
parent 61b0b6395f
commit f59c496c5d
18 changed files with 391 additions and 137 deletions

View File

@@ -1,18 +1,24 @@
<template>
<div class="w-full flex flex-col items-center">
<div class="w-full flex flex-col items-center mb-96">
<div @click="uiStore.closeBox()" class="cursor-pointer">
<logo />
</div>
<main>
<boxes />
<player />
</main>
</div>
</template>
<script setup>
import { useUiStore } from '~/store/ui'
import { useDataStore } from '~/store/data'
const uiStore = useUiStore()
onMounted(async () => {
const dataStore = useDataStore()
await dataStore.loadData()
uiStore.listBoxes()
})
</script>
<style>