Redirect / to /transcripts/new

This commit is contained in:
Koper
2023-08-15 22:20:34 +07:00
parent 69b8b2fab8
commit 3c130f7b3e

4
www/app/page.js Normal file
View File

@@ -0,0 +1,4 @@
import { redirect } from "next/navigation";
export default async function Index({ params }) {
redirect("/transcripts/new");
}