feat: make the date dynamic in the footer so that people do not think that the project is unmaintained :)

This commit is contained in:
Konstantin BIFERT 2026-03-10 20:54:43 +01:00
parent 6d4ea72450
commit ad31356a81

View file

@ -10,7 +10,7 @@ export default component$(() => {
<footer class="footer footer-center px-4 py-2 mt-4 text-base-content bg-base-200 bg-opacity-25">
<aside>
<p>Licensed under <a href={licenseLink} class="link link-primary">MIT</a> -
© <a href={authorLink} class="link link-primary">Alicia Sykes</a> 2024 -
© <a href={authorLink} class="link link-primary">Alicia Sykes</a> {new Date().getFullYear()} -
View source on <a href={ghLink} class="link link-primary">GitHub</a></p>
</aside>
</footer>