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>
5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
export default function RegisterJobRedirectPage() {
|
|
redirect("/jobs/new")
|
|
}
|