import Layout from "../components/layout";
import { useFetchUser } from "../lib/user";
function Home() {
const { user, loading } = useFetchUser();
return (
Loading login info...
To test the login click in Login
Once you have logged in you should be able to click in{" "}
Profile and Logout
Next.js and Auth0 Example
{loading &&
nickname: {user.nickname}
name: {user.name}
> )} ); } export default Home;