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