feat: initial commit
This commit is contained in:
commit
662a249ad3
192 changed files with 24641 additions and 0 deletions
15
src/components/blocks/banners/Mastodon.astro
Normal file
15
src/components/blocks/banners/Mastodon.astro
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
import { IconBrandMastodon } from "@tabler/icons-preact";
|
||||
|
||||
const { url } = Astro.props;
|
||||
---
|
||||
<div class="banner mastodon">
|
||||
<p>
|
||||
<a
|
||||
class="mastodon"
|
||||
href={url}
|
||||
>
|
||||
<IconBrandMastodon size={24} /> Discuss this post on Mastodon.
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
Reference in a new issue