21 lines
376 B
TypeScript
21 lines
376 B
TypeScript
import { signIn } from "next-auth/react"
|
|
|
|
export default function AccessDenied() {
|
|
return (
|
|
<>
|
|
<h1>Access Denied</h1>
|
|
<p>
|
|
<a
|
|
href="/api/auth/signin"
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
signIn()
|
|
}}
|
|
>
|
|
You must be signed in to view this page
|
|
</a>
|
|
</p>
|
|
</>
|
|
)
|
|
}
|