website/src/lib/Footer.svelte

12 lines
388 B
Svelte
Raw Normal View History

2023-01-25 22:41:11 +05:30
<footer class="sticky top-full">
2023-02-03 23:25:33 +05:30
<div
2023-02-21 23:24:42 +05:30
class="flex flex-col justify-center sm:flex-row gap-1 bg-secondary p-3 text-sm"
2023-02-03 23:25:33 +05:30
>
<p class="flex flex-row items-center gap-1">
Made with <i class="i-simple-icons:svelte text-[#FF3E00] block" /> SvelteKit
</p>
2023-01-25 22:41:11 +05:30
<span class="hidden sm:block">-</span>
<a href="https://github.com/ProjectSegfault/website">Source code</a>
</div>
2023-02-03 23:25:33 +05:30
</footer>