quickshell-web/src/components/Footer.astro

22 lines
867 B
Text

---
import matrixLogo from "@icons/matrix-logo.svg?raw";
import gitLogo from "@icons/git-logo.svg?raw";
---
<footer>
<section class="credits">
<p class="hint">Brought to you by:</p>
<a href="https://outfoxxed.me" target="_blank">outfoxxed - <span class="hint">Lead Developer</span></a>
<a href="https://github.com/Xanazf" target="_blank">Xanazf - <span class="hint">Website Developer / Designer</span></a>
<a href="https://github.com/quickshell-mirror/quickshell/graphs/contributors" target="_blank">
and our contributors
</a>
</section>
<section class="socials">
<a href="https://matrix.to/#/#quickshell:outfoxxed.me" target="_blank">
<Fragment set:html={matrixLogo}/>
</a>
<a href="https://git.outfoxxed.me/outfoxxed/quickshell" target="_blank">
<Fragment set:html={gitLogo}/>
</a>
</section>
</footer>