Footer
The footer area of the website. You can specify content for your default footer.
| Option | Type | Description | 
|---|---|---|
| children | ReactNode | Content of the footer. Default: "MIT ${new Date().getFullYear()} © Nextra." | 
| className | string | CSS class name | 
Example
You can add content, such as copyright information by passing it as children
of the Footer component:
app/layout.jsx
import { Footer, Layout } from 'nextra-theme-docs'
 
export default function MyLayout({ children, ...props }) {
  return (
    <Layout>
      {children}
      <Footer>
        MIT {new Date().getFullYear()} ©{' '}
        <a href="https://nextra.site" target="_blank">
          Nextra
        </a>
        .
      </Footer>
      {children}
    </Layout>
  )
}Toggle Visibility
You can toggle visibility of the <Footer> on the specific pages by setting theme.footer property in the _meta.js file:
_meta.js
export default {
  'my-page': {
    theme: {
      footer: false // Hide footer on this page
    }
  }
}Last updated on