diff --git a/www/app/page.js b/www/app/page.js new file mode 100644 index 00000000..d2835cf1 --- /dev/null +++ b/www/app/page.js @@ -0,0 +1,4 @@ +import { redirect } from "next/navigation"; +export default async function Index({ params }) { + redirect("/transcripts/new"); +}