← back to IWasCute
src/app/v1/page.tsx
14 lines
import { redirect } from 'next/navigation'
/**
* V1 was an internal design-exploration variant of the homepage (dark
* split-screen), 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 V1Page() {
redirect('/')
}