import Layout from "../components/layout"; import { useFetchUser } from "../lib/user"; function About() { const { user, loading } = useFetchUser(); return (

About

This is the about page, navigating between this page and Home is always pretty fast. However, when you navigate to the Profile{" "} page it takes more time because it uses SSR to fetch the user first;

); } export default About;