结构目录优化

This commit is contained in:
eafonyang
2026-07-30 11:32:45 +08:00
parent 99ab6cc4f4
commit 707d889514
29 changed files with 10 additions and 95 deletions
+14
View File
@@ -0,0 +1,14 @@
<script setup lang="ts">
const { t } = useI18n();
const currentYear = new Date().getFullYear();
</script>
<template>
<footer class="border-t border-gray-100 bg-gray-50 dark:bg-dark-900 dark:border-dark-700">
<div class="section-container py-32px flex flex-col items-center gap-12px">
<p class="text-sm text-gray-500 dark:text-gray-400">
{{ t('footer.copyright', { year: currentYear }) }}
</p>
</div>
</footer>
</template>