work-hub-server/apps/web/app/app.vue

65 lines
1.5 KiB
Vue

<script setup>
useHead({
meta: [{ name: "viewport", content: "width=device-width, initial-scale=1" }],
link: [{ rel: "icon", href: "/favicon.ico" }],
htmlAttrs: {
lang: "en",
},
});
const title = "Work Hub";
const description = "Project management made simple.";
useSeoMeta({
title,
description,
ogTitle: title,
ogDescription: description,
twitterCard: "summary_large_image",
});
</script>
<template>
<UApp>
<div class="flex flex-col min-h-screen">
<UHeader>
<template #left>
<NuxtLink to="/">
<AppLogo class="w-auto h-6 shrink-0" />
</NuxtLink>
<UButton to="/projects" label="Projects" color="neutral" variant="ghost" />
</template>
<template #right>
<UColorModeButton />
</template>
</UHeader>
<UMain class="px-6">
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</UMain>
<USeparator icon="i-simple-icons-nuxtdotjs" />
<UFooter>
<template #left>
<p class="text-sm text-muted">Built with Nuxt UI © {{ new Date().getFullYear() }}</p>
</template>
<template #right>
<UButton
to="https://github.com/nuxt-ui-templates/starter"
target="_blank"
icon="i-simple-icons-github"
aria-label="GitHub"
color="neutral"
variant="ghost" />
</template>
</UFooter>
</div>
</UApp>
</template>