2024-10-21 13:57:17 -06:00

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 />
}