6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default function Page() {
|
|
redirect(process.env.NEXT_PUBLIC_WEBAPP_URL || "https://app.cal.com");
|
|
}
|