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

@ -41,7 +41,12 @@ export async function Header() {
{session?.user ? (
<UserMenu user={session.user} />
) : (
<LoginButton className="-ml-2" />
<LoginButton
variant="link"
showGithubIcon={false}
text="Login"
className="-ml-2"
/>
)}
</div>
</div>