const SpotifyEmbed = ({ link }: { link: string }) => { const convertedUrl = link.replace(/\/(track|album|playlist|episode)\/([a-zA-Z0-9]+)/, "/embed/$1/$2"); return ( ); }; export default SpotifyEmbed;