web/src/components/Footer.astro
2025-01-22 22:38:19 -06:00

17 lines
380 B
Text

---
import { siteConfig } from "../config/site";
---
<footer
class="footer footer-center p-4 bg-base-300 text-base-content"
role="contentinfo"
>
<aside>
<p>
<span class="sr-only">Copyright</span>
© {new Date().getFullYear()} - All rights reserved by {
siteConfig.name
}
</p>
</aside>
</footer>