2.4 Navigable · Operable
WCAG 2.4.2 Page Titled
Level A
Every page must have a `<title>` that describes its topic or purpose, distinct from other pages on the site.
Common failures
- Multiple pages share the same generic title ("Home — mandatiq").
- Single-page apps don't update the document title on route change.
How to fix
- Author per-route metadata in Next.js (`export const metadata = { title: ... }`).
- Update the document title in client-side route changes.
Related criteria
- WCAG 2.4.6 Headings and Labels Level AA