Files
midnightdust-eu/src/components/Footer.astro
2024-09-18 14:23:17 +02:00

16 lines
318 B
Plaintext

---
const currentYear = new Date().getFullYear()
---
<footer>
<section class="py-8 text-center">
<div class="container">
<p>
&copy; {currentYear} - MidnightDust. A project by <a
href="https://github.com/Motschen">Martin Prokoph</a
>.
</p>
</div>
</section>
</footer>