2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/web/src/components/common/AppFooter.vue
2025-08-22 05:24:54 +08:00

52 lines
1.3 KiB
Vue

<script lang="ts" setup>
import { useGettext } from 'vue3-gettext'
const { $gettext } = useGettext()
const year = new Date().getFullYear()
</script>
<template>
<footer color="#6a6a6a" f-c-c flex-col text-14>
<p>
© 2022 - {{ year }}
<a hover="decoration-primary color-primary" target="__blank" href="https://panel.haozi.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://panel.haozi.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/tnblabs"
>
{{ $gettext('Sponsor') }}
</a>
</p>
</footer>
</template>