> 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.

# HomeFooter

This component is part of the [homepage](https://rspress.rs/guide/basic/home-page.md). `HomeFooter` renders footer information at the bottom of the homepage.

## Usage

Modify or override through [custom theme](https://rspress.rs/guide/basic/custom-theme.md).

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

export default function HomeFooter() {
  return <BasicHomeFooter />;
}
```

This component doesn't accept any props. It internally reads the [`themeConfig.footer`](https://rspress.rs/api/config/config-theme.md#footer) configuration through [`useSite`](https://rspress.rs/ui/hooks/use-site.md).
