fix: sign-in page

This commit is contained in:
shadcn 2023-06-16 21:28:44 +04:00
parent 7ce8ae0867
commit 071778533c
3 changed files with 23 additions and 12 deletions

View file

@ -1,13 +1,9 @@
import { FooterText } from '@/components/footer'
import { LoginButton } from '@/components/login-button'
export default function SignInPage() {
return (
<div className="flex flex-col items-center justify-center h-full min-h-screen">
<div className="space-y-4">
<LoginButton />
<FooterText />
</div>
<div className="flex h-[calc(100vh-theme(spacing.16))] items-center justify-center py-10">
<LoginButton />
</div>
)
}