chatbot-template/app/sign-in/[[...sign-in]]/page.tsx
2023-06-14 16:57:28 +04:00

42 lines
1.5 KiB
TypeScript

import { ClerkLoaded, ClerkLoading, SignIn } from '@clerk/nextjs'
import { cn } from '@/lib/utils'
import { ExternalLink } from '@/components/external-link'
import { buttonVariants } from '@/components/ui/button'
import { IconSpinner } from '@/components/ui/icons'
export default function SignInPage() {
return (
<div className="flex h-full min-h-screen flex-col items-center justify-center">
<div className="space-y-4">
<ClerkLoading>
<div className="flex items-center text-sm text-muted-foreground">
<IconSpinner className="mr-2 h-5 w-5" /> Loading...
</div>
</ClerkLoading>
<ClerkLoaded>
<SignIn
appearance={{
elements: {
card: 'shadow rounded-lg border border-border',
formFieldInput:
'flex h-9 w-full rounded-md px-3 py-2 text-sm shadow-sm',
formButtonPrimary: 'normal-case',
footerAction: 'text-sm',
footerActionLink: 'font-medium'
}
}}
/>
<p className="hidden px-2 text-center text-xs leading-normal text-muted-foreground sm:block">
Open source AI chatbot app built with{' '}
<ExternalLink href="https://nextjs.org">Next.js</ExternalLink> and{' '}
<ExternalLink href="https://vercel.com/storage/kv">
Vercel KV
</ExternalLink>
.
</p>
</ClerkLoaded>
</div>
</div>
)
}