112 B6 lines
Blame
1import { redirect } from "next/navigation";
2
3export default function StatusPage() {
4 redirect("/dashboard");
5}
6