Skip to content

Instantly share code, notes, and snippets.

@igorasilveira
Created February 19, 2022 09:44
Show Gist options
  • Save igorasilveira/0b106a73dc6526ac536ea1f8f8d46174 to your computer and use it in GitHub Desktop.
Save igorasilveira/0b106a73dc6526ac536ea1f8f8d46174 to your computer and use it in GitHub Desktop.
profile.js
import { useUser } from "@auth0/nextjs-auth0";
import Head from "next/head";
import Navbar from "../components/Navbar";
import styles from "../styles/Home.module.css";
export default function Profile() {
const { user, error, isLoading } = useUser();
if (isLoading) return <div>Loading...</div>;
if (error) return <div>{error.message}</div>;
return (
<div className={styles.container}>
<Head>
<title>Profile</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Navbar />
<main className={styles.main}>
<h1 className={styles.title}>Welcome to your profile.</h1>
<p className={styles.description}>Here are your details:</p>
<p>{JSON.stringify(user)}</p>
</main>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment