mirror of
https://github.com/linsa-io/linsa.git
synced 2026-04-29 19:57:32 +02:00
22 lines
521 B
TypeScript
22 lines
521 B
TypeScript
import { SignIn } from "@clerk/tanstack-start"
|
|
import { createFileRoute } from "@tanstack/react-router"
|
|
|
|
export const Route = createFileRoute("/_layout/(auth)/_auth/sign-in/$")({
|
|
component: () => <SignInComponent />,
|
|
})
|
|
|
|
function SignInComponent() {
|
|
return (
|
|
<div className="flex justify-center py-24">
|
|
<SignIn
|
|
appearance={{
|
|
elements: {
|
|
formButtonPrimary: "bg-primary text-primary-foreground",
|
|
card: "shadow-none",
|
|
},
|
|
}}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|