nzambello.dev/src/components/Footer.astro

13 lines
207 B
Plaintext

---
const today = new Date();
---
<footer>
&copy; {today.getFullYear()} Nicola Zambello. <em data-tooltip="😉">No rights reserved</em>.
</footer>
<style>
footer {
text-align: center;
}
</style>