I have an HTML structure like:
<div aria-label="User overview">
<a ... href="profile_page.html"><img ... src="user_profile_image" /></a>
Info about the user
<a ... href="profile_page.html">User name</a>
More Info about the user
</div>
Both links go to the same place. Should I add in the alt attribute the username, o this will be too repetitive for the screen reader users?
Should I remove the second link to the screen reader? If this one is a solution, how can I do that?
In the future I will change HTML structure, but for now on I have to keep it.