| 1 | --- |
| 2 | interface Props { |
| 3 | postTitle: string; |
| 4 | } |
| 5 | |
| 6 | const { postTitle } = Astro.props; |
| 7 | const emailSubject = encodeURIComponent(`Re: ${postTitle}`); |
| 8 | const mailtoLink = `mailto:contact@stevedylan.dev?subject=${emailSubject}`; |
| 9 | --- |
| 10 | |
| 11 | <div class="mt-8 space-y-4"> |
| 12 | <div class="flex gap-3 flex-wrap"> |
| 13 | <a |
| 14 | href={mailtoLink} |
| 15 | class="px-2 py-0.5 border border-white hover:border-zinc-400 hover:text-zinc-400 transition-colors text-xs" |
| 16 | > |
| 17 | Reply via Email |
| 18 | </a> |
| 19 | </div> |
| 20 | </div> |