trackevery-day/app/page.tsx

6 lines
104 B
TypeScript
Raw Permalink Normal View History

2024-09-03 22:00:14 +02:00
import { redirect } from "next/navigation";
2024-09-03 19:42:30 +02:00
export default function Home() {
2024-09-03 22:00:14 +02:00
redirect("/welcome");
2024-09-03 19:42:30 +02:00
}