Files
blazestar.net/src/components/Footer.astro

19 lines
361 B
Plaintext

---
const today = new Date();
---
<footer>
&copy; {today.getFullYear()} Periodic. All rights reserved.
<script
data-goatcounter="https://goatcounter.terakoda.com/count"
async
src="https://www.terakoda.com/count.js"></script>
</footer>
<style>
footer {
padding: 2em 1em 6em 1em;
text-align: center;
color: var(--color-gray);
}
</style>