--- import styles from './Networks.module.css' import { Rss, Mastodon, Github, Jsonfeed } from '@images/components' type Props = { links: string[] } const { links } = Astro.props ---
{ links.map((link: string) => ( {link.includes('mas.to') ? ( ) : link.includes('github') ? ( ) : link.includes('feed.xml') ? ( ) : link.includes('feed.json') ? ( ) : null} )) }