webcompile/src/lib/Footer.svelte

18 lines
542 B
Svelte

<footer class="flex flex-col text-xl sticky top-full">
<div
class="flex items-center flex-col border-t border-grey p-2 children:(text-text text-sm font-500 text-center)"
>
<span>© 2021 - present, Project Segfault <a href="/team">team</a></span>
<span
>Made with <a href="https://kit.svelte.dev/">SvelteKit</a> and
released under the
<a href="https://opensource.org/licenses/MIT/">MIT license</a
>.</span
>
<span
><a href="https://github.com/ProjectSegfault/website">Source code</a
></span
>
</div>
</footer>