2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 14:57:16 +08:00
Files
panel/web/src/components/common/AppFooter.vue
2026-01-20 18:32:48 +08:00

48 lines
1.2 KiB
Vue

<script lang="ts" setup>
import { useGettext } from 'vue3-gettext'
const { $gettext } = useGettext()
const year = new Date().getFullYear()
</script>
<template>
<footer text-14 f-c-c flex-col>
<p>
© 2022 - {{ year }}
<a hover="decoration-primary color-primary" target="__blank" href="https://acepanel.net/">
{{ $gettext('AcePanel') }}
</a>
{{ $gettext('All Rights Reserved.') }}
</p>
<p>
<a
hover="decoration-primary color-primary"
target="_blank"
href="https://jq.qq.com/?_wv=1027&k=I1oJKSTH"
>
{{ $gettext('QQ Group') }} 12370907
</a>
<n-divider vertical />
<a hover="decoration-primary color-primary" target="_blank" href="https://acepanel.net/docs">
{{ $gettext('Documentation') }}
</a>
<n-divider vertical />
<a
hover="decoration-primary color-primary"
target="_blank"
href="https://tom.moe/c/technical/panel"
>
{{ $gettext('Community') }}
</a>
<n-divider vertical />
<a
hover="decoration-primary color-primary"
target="_blank"
href="https://afdian.com/a/tnborg"
>
{{ $gettext('Sponsor') }}
</a>
</p>
</footer>
</template>