Skip to content

Commit

Permalink
feat: Modify the copyright (1Panel-dev#7670)
Browse files Browse the repository at this point in the history
  • Loading branch information
lan-yonghui authored Jan 8, 2025
1 parent 3650ff2 commit 87009dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/layout/components/AppFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<div class="flex w-full flex-col gap-4 md:justify-between md:flex-row">
<div class="flex flex-wrap gap-4">
<a v-if="!globalStore.isIntl" href="https://fit2cloud.com/" target="_blank">
Copyright © 2014-2025 {{ $t('commons.fit2cloud') }}
Copyright © 2014-{{ year }} {{ $t('commons.fit2cloud') }}
</a>
<a v-if="globalStore.isIntl" href="https://1panel.hk/" target="_blank">
Copyright © 2025 {{ $t('commons.lingxia') }}
Copyright © {{ year }} {{ $t('commons.lingxia') }}
</a>
</div>
<div class="flex flex-row gap-2 md:flex-col lg:flex-row">
Expand All @@ -25,6 +25,7 @@ const globalStore = GlobalStore();
const mobile = computed(() => {
return globalStore.isMobile();
});
const year = new Date().getFullYear();
</script>

<style scoped lang="scss">
Expand Down

0 comments on commit 87009dd

Please sign in to comment.