import { useUser } from "@auth0/nextjs-auth0/client"; import Layout from "../components/layout"; const About = () => { const { user, isLoading } = useUser(); return (

About

This project shows different ways to display Profile info: using{" "} Client rendered, Server rendered, and API rendered

Navigating between this page and Home is always pretty fast. However, when you navigate to the Server rendered profile page it takes more time because it uses SSR to fetch the user and then to display it

); }; export default About;