quickshell-web/src/components/Footer.astro

23 lines
935 B
Text
Raw Normal View History

---
2024-10-14 21:30:53 -07:00
import matrixLogo from "@icons/matrix-logo.svg?raw";
import gitLogo from "@icons/git-logo.svg?raw";
---
<footer>
2024-10-14 21:30:53 -07:00
<section class="credits">
<p class="hint">Brought to you by:</p>
2024-10-16 02:59:18 +03:00
<a href="https://outfoxxed.me" target="_blank">outfoxxed - <span class="hint">Lead Developer</span></a>
2024-10-25 05:57:51 +03:00
<a href="https://xanazf.github.io" target="_blank">Xanazf - <span class="hint">Website Developer / Designer</span></a>
2024-10-14 21:30:53 -07:00
<a href="https://github.com/quickshell-mirror/quickshell/graphs/contributors" target="_blank">
and our contributors
</a>
</section>
2024-10-14 21:30:53 -07:00
<section class="socials">
<a href="https://matrix.to/#/#quickshell:outfoxxed.me" target="_blank" aria-label="Join our matrix space">
2024-10-14 21:30:53 -07:00
<Fragment set:html={matrixLogo}/>
</a>
<a href="https://git.outfoxxed.me/outfoxxed/quickshell" target="_blank" aria-label="Visit our git server">
2024-10-14 21:30:53 -07:00
<Fragment set:html={gitLogo}/>
</a>
</section>
</footer>