gohorsejobs/frontend/src/app/register/job/page.tsx
Tiago Yamamoto 878a987749 refactor(routes): redirect /register/job to /jobs/new
Consolidates the two public job posting routes into the single canonical
flow at /jobs/new. The /publicar-vaga route already redirected there.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 12:50:51 -06:00

5 lines
122 B
TypeScript

import { redirect } from "next/navigation"
export default function RegisterJobRedirectPage() {
redirect("/jobs/new")
}