React’s composable nature allows us to create reusable components. Layouts are exactly that! In Next.js there are two ways that you can define a custom layout:
Single Shared Layout
A Single Shared Layout in Next.js is a custom layout that’s used by every page
in our app. Let’s say our app is simple, and every page has a navbar and a
footer. We can define our layout like so:
// src/components/layout/index.tsx
import type { ReactNode } from 'react';
import Navbar from './navbar';
import Footer from './footer';
type Props = {
  children?: ReactNode;
};
const Layout = ({ children }: Props) => {
  return (
    <>
      <Navbar />
      <main>{children}</main>
      <Footer />
    </>
  );
};
export default Layout;
In order to use this custom layout, we can wrap the Component component in
our _app.tsx file:
// pages/_app.tsx
import type { AppProps } from 'next/app';
import Layout from 'src/components/layout';
const App = ({ Component, pageProps }: AppProps) => {
  return (
    <Layout>
      <Component {...pageProps} />
    </Layout>
  );
};
export default App;
Since the Layout component is reused when changing pages, its component state
will be preserved.
Per-Page Layouts
If we want to have multiple layouts (ex. authentication, dashboard, settings
etc…), we can define a getLayout property to our pages that will receive the
page in props, and wrap it in the layout that we want. Since we’re returning a
function, we can have complex nested layouts if we wanted to.
Here’s an example of a page:
// pages/index.tsx
import type { ReactElement } from 'react'
import Layout from 'src/components/layout'
import NestedLayout from 'src/components/nested-layout'
const Page = () => {
  return (
    // Our page's content...
  )
}
Page.getLayout = (page: ReactElement) => {
  return (
    <Layout>
      <NestedLayout>{page}</NestedLayout>
    </Layout>
  )
}
export default Page
In order to use this, we need to make some changes in our _app.tsx:
// pages/_app.tsx
import type { ReactElement, ReactNode } from 'react';
import type { NextPage } from 'next';
import type { AppProps } from 'next/app';
type NextPageWithLayout = NextPage & {
  // define the getLayout method for every page
  getLayout?: (page: ReactElement) => ReactNode;
};
type AppPropsWithLayout = AppProps & {
  // override the default Component definition
  Component: NextPageWithLayout;
};
const App = ({ Component, pageProps }: AppPropsWithLayout) => {
  // use the getLayout defined in each page
  // if it doesn't exist, provide a fallback
  const getLayout = Component.getLayout ?? ((page) => page);
  return getLayout(<Component {...pageProps} />);
};
export default App;
Have in mind that the Custom Layouts are not considered as Pages, so the only way to fetch data is on the client-side.
That’s how we can setup a simple mechanism for custom per-page layouts.