Files
tout-doux/resources/ts/components/PageFooter.vue
T
klemek c7b1f3ed49
TS Lint / Oxlint (push) Successful in 43s
TS Lint / TypeScript (push) Successful in 49s
TS Lint / ESLint (push) Successful in 1m10s
feat: lang
2026-07-14 10:45:35 +02:00

22 lines
582 B
Vue

<script setup lang="ts">
import { defineAsyncComponent } from "vue";
const LangInput = defineAsyncComponent(() => import("@/components/LangInput.vue"));
</script>
<template>
<footer class="footer sm:footer-horizontal footer-center bg-base-300 text-base-content p-2">
<aside>
<p>
<lang-input /> - 2026 -
<a
href="https://git.klemek.fr/klemek/tout-doux"
class="underline">
klemek
</a>
</p>
</aside>
</footer>
</template>