--- import Icon from '@components/ui/icons/icon.astro'; type SocialPlatform = { name: string; url: string; svg: string; }; interface Props { pageTitle: string; } const { pageTitle } = Astro.props; const socialPlatforms: SocialPlatform[] = [ { name: 'Facebook', url: `https://www.facebook.com/sharer/sharer.php?u=${Astro.url}`, svg: 'facebook', }, { name: 'X', url: `https://x.com/intent/tweet?url=${Astro.url}&text=${pageTitle}`, svg: 'x', }, { name: 'LinkedIn', url: `https://www.linkedin.com/sharing/share-offsite/?url=${Astro.url}`, svg: 'linkedIn', }, ]; ---