Make sign in with apple button look acceptable

This commit is contained in:
2024-08-07 21:48:11 -05:00
parent d1ae239228
commit e987e0c40b
10 changed files with 103 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
import { signOut } from "next-auth/react"
import { Button } from "~/components/ui/button"
export default function Sign_Out() {
return <Button onClick={() => signOut()}>Sign Out</Button>
}