File size: 734 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { useUser } from "@auth0/nextjs-auth0/client";
import Layout from "../components/layout";

const About = () => {
  const { user, isLoading } = useUser();

  return (
    <Layout user={user} loading={isLoading}>
      <h1>About</h1>
      <p>
        This project shows different ways to display Profile info: using{" "}
        <i>Client rendered</i>, <i>Server rendered</i>, and <i>API rendered</i>
      </p>
      <p>
        Navigating between this page and <i>Home</i> is always pretty fast.
        However, when you navigate to the <i>Server rendered profile</i> page it
        takes more time because it uses SSR to fetch the user and then to
        display it
      </p>
    </Layout>
  );
};

export default About;