--- import Icon from '../AstroIcon.astro'; export interface Props { pageUrl: string; description: string; } const { pageUrl, description } = Astro.props; const twitterUrl = `https://twitter.com/intent/tweet?text=${description}&url=${pageUrl}`; const fbUrl = `https://www.facebook.com/sharer/sharer.php?quote=${description}&u=${pageUrl}`; const hnUrl = `https://news.ycombinator.com/submitlink?t=${description}&u=${pageUrl}`; const redditUrl = `https://www.reddit.com/submit?title=${description}&url=${pageUrl}`; ---