nzambello.dev/src/components/Footer.astro

13 lines
177 B
Plaintext
Raw Normal View History

2023-05-30 17:12:28 +02:00
---
2023-05-31 10:10:31 +02:00
const today = new Date()
2023-05-30 17:12:28 +02:00
---
<footer>
2023-05-31 10:10:31 +02:00
&copy; {today.getFullYear()} Nicola Zambello. No rights reserved.
2023-05-30 17:12:28 +02:00
</footer>
<style>
2023-05-31 10:10:31 +02:00
footer {
text-align: center;
}
2023-05-30 17:12:28 +02:00
</style>