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

# HomeBackground

This component is part of the [homepage](https://rspress.rs/guide/basic/home-page.md). `HomeBackground` renders background effects on the homepage and automatically sets the navbar to transparent style.

## Usage

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

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

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