nzambello.dev/src/components/Footer.astro

14 lines
190 B
Plaintext
Raw Normal View History

2023-05-30 17:12:28 +02:00
---
const today = new Date();
---
<footer>
&copy; {today.getFullYear()} YOUR NAME HERE. All rights reserved.
</footer>
<style>
footer {
padding: 25px;
text-align: center;
}
</style>