## Summary In `apps/web/src/routes/u/[username]/+page.svelte`, add a button that copies the current profile URL to clipboard. ## Tasks - [ ] add a button near `Get DevCard` CTA labeled 'Copy Link'. - [ ] implement click handler that calls `navigator.clipboard.writeText(window.location.href)`. - [ ] show transient message on success and failure using local component state. ## Acceptance Criteria - [ ] user can click and URL is copied with a visible notification. - [ ] cross-browser support is noted (fallback text if clipboard API unavailable).
Summary
In
apps/web/src/routes/u/[username]/+page.svelte, add a button that copies the current profile URL to clipboard.Tasks
Get DevCardCTA labeled 'Copy Link'.navigator.clipboard.writeText(window.location.href).Acceptance Criteria