fuwari/src/components/Footer.astro

13 lines
450 B
Plaintext
Raw Normal View History

---
import {getConfig} from "../utils/config-utils";
---
<div class="card-base max-w-[var(--page-width)] min-h-[72px] rounded-b-none mx-auto flex items-center px-6">
<div class="text-black/50 dark:text-white/50 text-sm">
© 2023 {getConfig().profile.author}. All Rights Reserved.
<br>
2023-10-18 21:24:51 +08:00
Powered by <a class="link text-[var(--primary)]" target="_blank" href="https://github.com/saicaca/fuwari">Fuwari</a>
</div>
</div>