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/GitHub.astro

13 lines
300 B
Text

---
import { IconBrandGithub } from "@tabler/icons-preact";
const { url } = Astro.props;
---
<div class="banner github">
<p>
<IconBrandGithub size={24} /> Take a look at <a href={url}
>the GitHub repository for this project</a
>. (Give it a star if you feel like it.)
</p>
</div>