From 3c130f7b3e57c44307d980968678eabebeb7bb93 Mon Sep 17 00:00:00 2001 From: Koper Date: Tue, 15 Aug 2023 22:20:34 +0700 Subject: [PATCH] Redirect / to /transcripts/new --- www/app/page.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 www/app/page.js 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"); +}