import Head from 'next/head'; import { csrfToken } from 'next-auth/client'; export default function Login({ csrfToken }) { return (
Login

Sign in to your account

) } Login.getInitialProps = async (context) => { return { csrfToken: await csrfToken(context) } }