1.6 Adjacent links go to the same target (L)
1.6.1 WCAG 2.4.4 (A), 3.2.4 (AA) - Desktop, iPad
On the page header, both the HMPPS logo and the adjacent text go to the same target URL. This can result in additional navigation and repetition for keyboard and screen reader users.
Additionally, screen readers announce the two links differently: the first is announced as “HMPPS link” while the second is announced as “Decide is someone should be recalled or not.” This could be confusing for screen reader users who might expect both links to go to different targets. For a similar issue where the purpose of the link is not clear, see ‘Open’ link purpose unclear on Risk page (M) .
Furthermore, ‘HMPPS’ on its own might not give screen reader users enough context to understand its purpose.

FIGURE 1.8: Adjacent redundant links highlighted on Start page
1.6.2 Code Snippet
<a class="hmpps-header__link hmpps-header__title__organisation-name" href="/">
...
HMPPS
</a>
<a class="hmpps-header__link hmpps-header__title__service-name" href="/">
Decide if someone should be recalled or not
</a>
1.6.3 Recommendation
Combine both elements into one link. Alternatively, remove the second link since it is redundant. Update the link text for the HMPPS logo to be more descriptive. For example:
<a href="/">
HMPPS Home Page
</a>