feat: added button styling and updated login layout

This commit is contained in:
Dominik 2025-04-19 01:24:28 +02:00 committed by SomeCodecat
parent d86c86e137
commit 77ef7038d2
9 changed files with 196 additions and 29 deletions

View file

@ -1,14 +0,0 @@
import { signOut } from '@/auth';
export function SignOut() {
return (
<form
action={async () => {
'use server';
await signOut();
}}
>
<button type='submit'>Sign Out</button>
</form>
);
}