webcompile/src/lib/Footer.svelte
2023-02-21 19:54:42 +02:00

12 lines
388 B
Svelte

<footer class="sticky top-full">
<div
class="flex flex-col justify-center sm:flex-row gap-1 bg-secondary p-3 text-sm"
>
<p class="flex flex-row items-center gap-1">
Made with <i class="i-simple-icons:svelte text-[#FF3E00] block" /> SvelteKit
</p>
<span class="hidden sm:block">-</span>
<a href="https://github.com/ProjectSegfault/website">Source code</a>
</div>
</footer>