Implement next-auth v5
This commit is contained in:
parent
a9e4956909
commit
187b55aad7
15 changed files with 420 additions and 547 deletions
13
app/sign-in/page.tsx
Normal file
13
app/sign-in/page.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue