Files
evilspins/app/pages/index.vue
valere f59c496c5d
All checks were successful
Deploy App / build (push) Successful in 2m25s
Deploy App / deploy (push) Successful in 15s
route v1
2025-10-21 00:09:26 +02:00

29 lines
546 B
Vue

<template>
<div class="w-full flex flex-col items-center mb-96">
<div @click="uiStore.closeBox()" class="cursor-pointer">
<logo />
</div>
<main>
<boxes />
</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>
.logo {
filter: drop-shadow(2px 2px 0 rgb(0 0 0 / 0.8));
}
</style>