feat(dashboard): add price overview UI

This commit is contained in:
2026-08-01 22:29:45 +02:00
parent 0fa648f833
commit 8a0a94f26e
9 changed files with 143 additions and 9 deletions
+4 -3
View File
@@ -5,8 +5,9 @@ import history from '@/routes/history';
</script>
<template>
<nav class="fixed top-0 left-0 w-40">
<ul>
<nav class="fixed top-0 bottom-0 left-0 w-64 bg-primary p-4">
<img src="/storage/logo.svg" class="mb-4 mix-blend-plus-lighter" />
<ul class="flex-1 gap-4">
<li>
<a :href="dashboard.index().url">{{ t('dashboard.title') }}</a>
</li>
@@ -15,5 +16,5 @@ import history from '@/routes/history';
</li>
</ul>
</nav>
<div class="absolute top-0 left-40"><slot /></div>
<div class="absolute top-0 left-64 p-4"><slot /></div>
</template>