This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-astro/src/components/blocks/banners/Coffee.astro

14 lines
318 B
Text

---
import icons from "@cdransf/astro-tabler-icons";
const { IconCoffee } = icons;
---
<div class="banner coffee">
<p>
<span set:html={IconCoffee({ size: 24 })} />
<a class="coffee" href="https://buymeacoffee.com/cory">
If you found this post helpful, you can buy me a coffee.
</a>
</p>
</div>