Add footer and improvements to navigation
This commit is contained in:
11
app/app.vue
11
app/app.vue
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user