> For AI agents: the complete documentation index is available at https://rspress.rs/llms.txt, the full documentation bundle is available at https://rspress.rs/llms-full.txt.

# DocFooter

`DocFooter` renders the footer area at the bottom of doc pages, including the edit link, last updated time, and prev/next page navigation.

## Usage

This component is automatically rendered at the bottom of doc pages and usually does not need to be used manually. To customize it, eject the component:

```tsx preview
import { DocFooter as BasicDocFooter } from '@rspress/core/theme-original';

export default function DocFooter() {
  return <BasicDocFooter />;
}
```

```tsx title="theme/components/DocFooter/index.tsx" file="<root>/../packages/core/src/theme/components/DocFooter/index.tsx"
import { EditLink, LastUpdated, PrevNextPage } from '@rspress/core/theme';
import './index.scss';

export function DocFooter() {
  return (
    <footer className="rp-doc-footer">
      <div className="rp-doc-footer__edit">
        <EditLink />
        <LastUpdated />
      </div>
      <div className="rp-doc-footer__divider" />
      <PrevNextPage />
    </footer>
  );
}

```

## Included components

`DocFooter` consists of the following components:

- [EditLink](https://rspress.rs/ui/layout-components/edit-link.md) - Displays "Edit this page" link
- [LastUpdated](https://rspress.rs/ui/layout-components/last-updated.md) - Displays page last updated time
- [PrevNextPage](https://rspress.rs/ui/layout-components/prev-next-page.md) - Displays prev/next page navigation
