When a screen reader encounters an empty link it announces "link" with nothing else. The user has no idea where it goes. Same goes for icon-only buttons with no aria-label.
<!-- Descriptive link text -->
<a href="/privacy">Read our privacy policy</a>
<!-- Icon button with aria-label -->
<button aria-label="Close dialog">✕</button>