Add footer and improvements to navigation

This commit is contained in:
2026-04-19 18:11:44 +01:00
parent fc3e1f4149
commit 142a7408bd
4 changed files with 53 additions and 11 deletions

View File

@@ -11,6 +11,8 @@ useHead({
}
})
import { version as VERSION } from '../package.json';
useSeoMeta({
title: 'Dashboard OS',
description: 'Your personal folder browser dashboard.',
@@ -19,8 +21,13 @@ useSeoMeta({
<template>
<UApp>
<div class="h-screen w-screen overflow-hidden bg-gradient-to-br from-neutral-900 to-black text-white selection:bg-primary-500 selection:text-white">
<NuxtPage />
<div class="h-screen w-screen flex flex-col overflow-hidden bg-gradient-to-br from-neutral-900 to-black text-white selection:bg-primary-500 selection:text-white">
<main class="flex-1 overflow-hidden">
<NuxtPage />
</main>
<footer class="py-4 text-center text-sm text-white/50 border-t border-white/5">
Made with by Daryn van Vreden Dashlio v{{ VERSION }}
</footer>
</div>
</UApp>
</template>