Basic UI rework

This commit is contained in:
mcarquigny
2025-03-20 15:54:16 +01:00
parent 742da61016
commit 12086a4c88
28 changed files with 1259 additions and 24 deletions

18
src/pages/Index.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<q-page class="flex flex-center flex-">
<div class="text-center">
<img alt="Quasar logo" src="~assets/gyoza.jpg">
<br/>
<q-btn label="Go" color="primary" to="/dashboard"></q-btn>
</div>
</q-page>
</template>
<style>
</style>
<script>
export default {
name: 'PageIndex'
}
</script>