mirror of
https://github.com/eggent-ai/eggent.git
synced 2026-03-08 10:33:06 +00:00
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function Home() {
|
|
redirect("/dashboard");
|
|
}
|