fix(redirect): update redirect path to /problemset

This commit is contained in:
cfngc4594 2025-03-07 16:38:51 +08:00
parent 9f619d71d1
commit 0a8e2d49b4

View File

@ -1,5 +1,5 @@
import { redirect } from "next/navigation"; import { redirect } from "next/navigation";
export default function HomePage() { export default function HomePage() {
redirect("/playground"); redirect("/problemset");
} }