mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
17 lines
295 B
TypeScript
17 lines
295 B
TypeScript
import { SignIn } from "@clerk/nextjs"
|
|
|
|
export const SignInClient = () => {
|
|
return (
|
|
<div className="flex justify-center">
|
|
<SignIn
|
|
appearance={{
|
|
elements: {
|
|
formButtonPrimary: "bg-primary text-primary-foreground",
|
|
card: "shadow-none"
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|