2024-05-22 19:35:19 -07:00

14 lines
281 B
TypeScript

import { currentUser } from "@clerk/nextjs";
import { redirect } from "next/navigation";
import Landing from "@/components/landing";
export default async function Home() {
const user = await currentUser();
if (user) {
redirect("/dashboard");
}
return <Landing />;
}