Frontend refactor and additions

This commit is contained in:
Jesse Malotaux 2025-04-11 16:49:51 +02:00
parent 5de99b32cd
commit 2a9813e7ac
12 changed files with 195 additions and 26 deletions

View file

@ -1,5 +1,15 @@
<template>
<div id="dashboard"></div>
<div id="dashboard" class="panel">
<h1 class="panel__title">Dashboard</h1>
<div class="panel__content">
<div class="grid gap-1 opacity-50 h-fit">
<em>Hello nothing to see here. Something will be added in the future.</em>
<em>Use the menu to navigate.</em>
<em>Have a nice day!</em>
</div>
</div>
</div>
</template>
<script setup></script>

View file

@ -1,10 +1,7 @@
<template>
<div id="panels" class="panel">
<h1 class="flex items-end justify-between !w-full panel__title">
<div>
Panels
<span class="text-sm">{{ isLocal() ? 'remote' : 'servers' }}</span>
</div>
<div>Panels</div>
<ButtonComp
v-if="panel.function != 'overview'"
variant="subtle"