no longer use i18n for messages

This commit is contained in:
2025-09-22 17:36:41 +07:00
parent 2cf92499dc
commit babfa1cf56
5 changed files with 81 additions and 47 deletions
+5 -4
View File
@@ -4,10 +4,12 @@
<div class="container">
<section class="row">
<section class="footer-notice">
<img width="48" height="48" src="/favicon.ico" alt="*nix" class="text-2xl"></img>
<img width="48" height="48" src="/logo.svg" alt="*nix" class="text-2xl"></img>
<h2 class="text-2xl font-bold my-[0.5em]">*nix in Thailand (กซในประเทศไทย)</h2>
<p class="my-[0.5em]">{{t('footer.copyright.notice', {'year': year, 'yearB': year + 543})}}</p>
<LanguageSwitcher/>
<p class="my-[0.5em]">รสทธ 🄯 *nix in Thailand, {{ year }} ({{ year + 543 }}), ไมสงวนสทธกประการ</p>
<div class="flex gap-1">
<UButton variant="outline" color="neutral" size="sm" to="https://gitskette.dailitation.xyz/DandelionNStuff/NixWeb-homepage" label="ซอร์สโค้ด"/>
</div>
</section>
</section>
</div>
@@ -16,6 +18,5 @@
</template>
<script setup lang="ts">
const {t} = useI18n();
const year = 2025
</script>