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

# HomeFooter

该组件是 [首页](https://rspress.rs/zh/guide/basic/home-page.md) 的一部分，`HomeFooter` 用于在首页底部渲染页脚信息。

## 用法

通过 [自定义主题](https://rspress.rs/zh/guide/basic/custom-theme.md) 来进行修改或覆盖。

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

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

该组件不接受任何 props，组件内部通过 [`useSite`](https://rspress.rs/zh/ui/hooks/use-site.md) 读取 [`themeConfig.footer`](https://rspress.rs/zh/api/config/config-theme.md#footer) 配置。
