lure-web-old/frontend/src/routes/footer.svelte

21 lines
682 B
Svelte
Raw Normal View History

2022-12-26 01:10:35 +00:00
<script>
2023-10-07 02:20:03 +00:00
import Icon from '@iconify/svelte';
2022-12-26 01:10:35 +00:00
</script>
2023-10-07 02:20:03 +00:00
<br style="margin-top: 20px" />
2022-12-26 03:29:30 +00:00
<div class="hero is-dark is-small">
2023-10-07 02:20:03 +00:00
<div class="hero-body has-text-centered">
<p>
Copyright &copy; {new Date().getFullYear()} LURE Web Contributors. Licensed under the
<a class="has-text-link" href="https://www.gnu.org/licenses/agpl-3.0-standalone.html">
AGPLv3
</a>.
</p>
<div class="is-size-4">
<a href="https://gitea.elara.ws/lure/lure-web"><Icon icon="cib:gitea" /></a>
<a href="https://github.com/lure-sh/lure-web"><Icon icon="mdi:github" /></a>
<a href="https://reddit.com/r/linux_user_repository"><Icon icon="ic:round-reddit" /></a>
</div>
</div>
</div>