GPT-5 finding
Client-side navigation uses <a> instead of next/link, causing full page reloads
lowperformancehigh
- apps/web/app/activity/ActivityView.tsx
Using a raw anchor in a Next.js App Router context triggers a full document navigation, losing client state and skipping prefetch, which degrades UX and performance.
Recommendation
Replace the <a> with Next.js Link from next/link for internal navigation: <Link href={href} className=...>{content}</Link>. Enable prefetch if appropriate.