frontend/pages/account.vue
2025-10-26 18:56:20 +01:00

21 lines
474 B
Vue

<template>
<div class="account-page">
<NuxtPage></NuxtPage>
<div class="left-center footer">
<NuxtLink to="/account/inspect">Inspect</NuxtLink>
<NuxtLink to="/account/monitorings/nodes">Monitorings</NuxtLink>
</div>
</div>
</template>
<style scoped>
.account-page {
height: 100%;
display: grid;
grid-template-rows: 1fr auto;
}
.footer {
background-color: rgb(12, 12, 12);
padding: 1rem;
}
</style>