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

# HomeBackground

该组件是 [首页](https://rspress.rs/zh/guide/basic/home-page.md) 的一部分，`HomeBackground` 用于在首页渲染背景效果，同时会自动将导航栏设置为透明样式。

## 用法

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

```tsx
import { HomeBackground as BasicHomeBackground } from '@rspress/core/theme-original';

export function HomeBackground() {
  return <BasicHomeBackground className="my-custom-bg" />;
}
```
