2024-05-19 20:46:41 +02:00

11 lines
309 B
Plaintext

---
import { getCurrentYear } from "@/utils/date";
import ThemeSwitcher from "./ThemeSwitcher.astro";
---
<footer class="flex justify-between py-4">
<p class="text-lg font-semibold">
&copy; {getCurrentYear()} Autonomic. Template distributed under AGPL 3.0.
</p>
<ThemeSwitcher/>
</footer>