feat: initial commit
This commit is contained in:
commit
662a249ad3
192 changed files with 24641 additions and 0 deletions
13
src/components/blocks/banners/GitHub.astro
Normal file
13
src/components/blocks/banners/GitHub.astro
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
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>
|
Reference in a new issue