This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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>