chatbot-template/app/sign-in/[[...sign-in]]/page.tsx

12 lines
290 B
TypeScript
Raw Normal View History

2023-06-13 17:31:15 -04:00
import { SignIn } from '@clerk/nextjs'
export default function Page() {
return (
<div className="flex flex-col items-center justify-center h-full min-h-screen">
<div className="flex flex-col items-center justify-center h-full">
<SignIn />
</div>
</div>
)
}