Persistent navigation in a NextJs _app

You can add getInitialProps to your custom _app page (getServerSideProps and getStaticProps are not supported). // _app.jsx // Other imports.. import NextApp, { AppProps } from ‘next/app’; interface WithNavProps extends AppProps { navigation: any; } const App = ({ Component, pageProps, navigation }: WithNavProps) => { console.log(navigation); // Will print your nav contents return ( … Read more