mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
21 lines
518 B
Plaintext
21 lines
518 B
Plaintext
---
|
|
import { Sprite } from 'astro-icon';
|
|
|
|
import Link from './Link.astro';
|
|
import Subsubheadline from './Subsubheadline.astro';
|
|
---
|
|
|
|
<div class="grow mbe-5 sm:mbe-0">
|
|
<Subsubheadline>Stay up to date.</Subsubheadline>
|
|
<p>
|
|
<Sprite name="ri:rss-fill" class="h-icon w-icon inline" />
|
|
<Link
|
|
class="font-light decoration-4 underline-offset-auto hover:underline hover:decoration-shibui-900/20 dark:hover:decoration-shibui-100/20"
|
|
href="/rss.xml"
|
|
target="_blank"
|
|
>
|
|
Subscribe via RSS
|
|
</Link>
|
|
</p>
|
|
</div>
|