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

10 lines
241 B
TypeScript
Raw Normal View History

2023-06-16 11:49:14 -04:00
import { LoginButton } from '@/components/login-button'
export default function SignInPage() {
return (
2023-06-16 21:28:44 +04:00
<div className="flex h-[calc(100vh-theme(spacing.16))] items-center justify-center py-10">
<LoginButton />
2023-06-16 11:49:14 -04:00
</div>
)
}