> For the complete documentation index, see [llms.txt](https://docs.pages.revox.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pages.revox.io/angular/components/untitled.md).

# Header

## Importing

First import it to your app module or any submodule as you wish

```typescript
import { HeaderComponent } from './@pages/components/header/header.component';
@NgModule({
  declarations: [HeaderComponent,...]
})
export class AppModule(){}
```

## How to use&#x20;

{% tabs %}
{% tab title="HTML" %}

```markup
<pg-header [boxed]="_boxed">
<!-- YOUR HEADER CONTENT GOES HERE -->
</pg-header>
```

{% endtab %}
{% endtabs %}

## API

| Property | Description                        | Type    | Default |
| -------- | ---------------------------------- | ------- | ------- |
| boxed    | Wraps content with a container div | boolean | false   |
