Skip to content

Commit

Permalink
redirect home
Browse files Browse the repository at this point in the history
  • Loading branch information
ntotten committed Oct 8, 2023
1 parent 10c0257 commit 2508cbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { redirect } from "next/navigation";

export default async function Page() {
return <p>Home</p>;
return redirect("/docs");
}

0 comments on commit 2508cbb

Please sign in to comment.