kjelsrud.dev/src/components/Footer.astro

14 lines
190 B
Text
Raw Normal View History

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