page.tsx 105 B

12345
  1. import { redirect } from "next/navigation";
  2. export default function HomePage() {
  3. redirect("/chat");
  4. }