kjelsrud.dev/src/components/Footer.astro

14 lines
170 B
Text
Raw Normal View History

2023-07-19 19:31:30 +00:00
---
const today = new Date();
---
<footer>
2023-08-01 18:16:34 +00:00
{today.getFullYear()} &copy; Sindre Kjelsrud.
2023-07-19 19:31:30 +00:00
</footer>
<style>
footer {
padding: 25px;
text-align: center;
}
</style>