21 lines
814 B
Vue
Executable File
21 lines
814 B
Vue
Executable File
<template>
|
|
<footer class="footer site-footer">
|
|
<div class="site-footer">
|
|
<div class="container">
|
|
<section class="row">
|
|
<section class="footer-notice">
|
|
<img width="48" height="48" src="/favicon.ico" 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/>
|
|
</section>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const {t} = useI18n();
|
|
const year = 2025
|
|
</script> |