mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 00:05:07 +00:00
25 lines
734 B
TypeScript
25 lines
734 B
TypeScript
![]() |
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;
|