← back to IWasCute

src/app/v3/page.tsx

13 lines

import { redirect } from 'next/navigation'

/**
 * V3 was an internal design-exploration variant of the homepage, shown to
 * real visitors via a "Choose your experience" version switcher. That
 * switcher read as an unfinished/dev site to a human reviewer, so the
 * canonical homepage now lives at "/" and this route redirects there.
 * Original design preserved in git history (TK-11412, AdSense readiness pass).
 */
export default function V3Page() {
  redirect('/')
}