--- import { Bitcoin, Github, Mastodon } from '@/images/components' import config from '@config/blog.config' import Action from './Action.astro' import styles from './Actions.module.css' type Props = { githubLink: string } const { githubLink } = Astro.props const actions = [ { title: 'Have a comment?', text: 'Hit me up @krema@mas.to', url: config.author.mastodon, icon: Mastodon }, { title: 'Found something useful?', text: 'Say thanks with BTC or ETH', url: '/thanks/', icon: Bitcoin }, { title: 'Edit on GitHub', text: 'Contribute to this post', url: githubLink, icon: Github } ] ---
{ actions.map((action) => ( )) }