Select the types of activity you want to include in your feed.
1export async function copyToClipboard(link: string) { 2 await navigator.clipboard.writeText(link); 3 alert("Link copied to clipboard!"); 4}