refactor(routes): remove /publicar-vaga and /register/job

Both routes are fully replaced by /jobs/new. Deleted directories entirely
instead of keeping redirects.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Tiago Yamamoto 2026-02-22 12:51:57 -06:00
parent 878a987749
commit edc1b76cfd
2 changed files with 0 additions and 10 deletions

View file

@ -1,5 +0,0 @@
import { redirect } from "next/navigation"
export default function PublicarVagaRedirectPage() {
redirect("/jobs/new")
}

View file

@ -1,5 +0,0 @@
import { redirect } from "next/navigation"
export default function RegisterJobRedirectPage() {
redirect("/jobs/new")
}