--- import Icon from '@components/ui/icons/icon.astro'; const { pageTitle, title = 'Share' } = Astro.props; interface Props { pageTitle: string; title?: string; } type SocialPlatform = { name: string; url: string; svg: string; }; const socialPlatforms: SocialPlatform[] = [ { name: 'Facebook', url: `https://www.facebook.com/share.php?u=${Astro.url}&title=${pageTitle}`, svg: 'facebook', }, { name: 'X', url: `https://twitter.com/home/?status=${pageTitle}${Astro.url}`, svg: 'x', }, { name: 'LinkedIn', url: `https://www.linkedin.com/shareArticle?mini=true&url=${Astro.url}&title=${pageTitle}`, svg: 'linkedIn', }, ]; ---