Files
noteshare.space/webapp/src/lib/components/Footer.svelte
Maxime Cannoodt d495235c38 docs: 💬 Add roadmap page
2022-09-09 14:13:53 +02:00

28 lines
967 B
Svelte

<hr class="border-zinc-200 dark:border-zinc-700 transition-colors" />
<footer
class="px-3 py-6 md:p-8 text-center flex flex-wrap justify-center items-center gap-x-2 gap-y-1.5 text-zinc-500 dark:text-zinc-400"
>
<span>
Built with love by <a class="underline" href="https://mcndt.dev" alt="blog">mcndt</a>
</span>
<span>-</span>
<a class="underline" href="/about">About</a>
<span>-</span>
<a class="underline" href="/changelog">Changelog</a>
<span>-</span>
<a class="underline" href="/roadmap">Roadmap</a>
<span>-</span>
<a class="underline" href="/contact">Contact</a>
<span>-</span>
<a class="underline" href="https://discord.gg/y3HqyGeABK">Discord</a>
<span>-</span>
<a
class="underline"
href="https://github.com/mcndt/noteshare.space/issues/new?assignees=&labels=&template=bug_report.md&title=%5BBug%5D"
>🐛 Report bug</a
>
<span>-</span>
<a class="underline" href="https://www.buymeacoffee.com/mcndt">☕ Buy me a coffee</a>
</footer>