kjelsrud.dev/src/components/Footer.astro

7 lines
165 B
Text
Raw Normal View History

2023-07-19 21:31:30 +02:00
---
const today = new Date();
---
2023-09-25 14:46:17 +02:00
<footer class="flex justify-center fixed w-screen bottom-0 p-4 footerbg">
2023-08-01 20:16:34 +02:00
{today.getFullYear()} &copy; Sindre Kjelsrud.
2023-08-22 15:59:48 +02:00
</footer>