chatbot-template/app/sign-in/page.tsx
2023-06-16 21:28:44 +04:00

9 lines
241 B
TypeScript

import { LoginButton } from '@/components/login-button'
export default function SignInPage() {
return (
<div className="flex h-[calc(100vh-theme(spacing.16))] items-center justify-center py-10">
<LoginButton />
</div>
)
}