mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 22:47:15 +01:00
20 lines
347 B
TypeScript
20 lines
347 B
TypeScript
import { signIn } from 'next-auth/react'
|
|
|
|
export default function Denied() {
|
|
return (
|
|
<>
|
|
<h1>Du bist nicht angemeldet.</h1>
|
|
<p>
|
|
<a
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
signIn()
|
|
}}
|
|
>
|
|
Melde dich an um diese Seite zu sehen.
|
|
</a>
|
|
</p>
|
|
</>
|
|
)
|
|
}
|