Why this matters
Enables client-side navigation, controlled prefetch, and better UX.
Use <Link> from 'next/link' for internal routes; reserve <a> only for external URLs or downloadable assets.
Enables client-side navigation, controlled prefetch, and better UX.
Side-by-side examples engineers can pattern-match during review.
<a href="/dashboard">Go</a>import Link from 'next/link'
export function Nav(){ return <Link href="/dashboard" prefetch>Dashboard</Link> }<a href="/settings">Settings</a><Link href="/settings">Settings</Link>From the same buckets as this rule.