Files

22 lines
1.1 KiB
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="/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]">รสทธ 🄯 *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>
</div>
</footer>
</template>
<script setup lang="ts">
const year = 2025
</script>