generated from autonomic-cooperative/astro-payload-template
11 lines
309 B
Plaintext
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">
|
|
© {getCurrentYear()} Autonomic. Template distributed under AGPL 3.0.
|
|
</p>
|
|
<ThemeSwitcher/>
|
|
</footer> |