14 lines
281 B
TypeScript
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 />;
|
|
}
|