quickshell-web/src/components/Footer.astro

29 lines
1 KiB
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";
2024-11-09 04:30:27 -08:00
interface Props {
class?: string;
}
const props = Astro.props;
---
2024-11-09 04:30:27 -08:00
<footer class=`${props.class ?? ""}`>
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>
2025-05-13 20:56:31 -07: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>
2024-11-09 04:30:27 -08:00
<a href="https://git.outfoxxed.me/quickshell/quickshell" target="_blank" aria-label="Visit our git server">
2024-10-14 21:30:53 -07:00
<Fragment set:html={gitLogo}/>
</a>
</section>
</footer>