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

20 lines
518 B
Vue

<template>
<USeparator icon="i-simple-icons-nuxtdotjs" />
<UFooter data-allow-mismatch="children">
<template #left>
<p class="text-sm text-muted">{{ $t('app.title') }} © {{ 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>
</template>