feat: impl nonworking /status route

This commit is contained in:
kittentm 2026-05-14 06:47:30 +02:00
commit cb8d1a801d
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
4 changed files with 386 additions and 3 deletions

View file

@ -1,6 +1,12 @@
<template>
<div>
<TheHeader />
<slot /> <MainFooter />
<div class="layout-wrapper">
<StatusHeader />
<main>
<slot />
</main>
</div>
</template>
<script setup>
import StatusHeader from '~/components/StatusHeader.vue'
</script>