src/app/v2/page.tsx
import { redirect } from 'next/navigation'
/**
* V2 was an internal design-exploration variant of the homepage
* (glassmorphism), shown to real visitors via a "Choose your experience"
* version switcher. See v1/page.tsx for why this now redirects to "/".
* Original design preserved in git history (TK-11412, AdSense readiness pass).
*/
export default function V2Page() {
redirect('/')
}