# Install

```shell
npm i @mate-angular/anchor-nav
```

# Import

```typescript
import { MateAnchorNavComponent, MateAnchorNavSectionComponent } from '@mate-angular/anchor-nav';
```

# Variants

## Default

```html
<mate-anchor-nav-ng>
  <mate-anchor-nav-section-ng title="Section 1">
    <p>Content 1</p>
  </mate-anchor-nav-section-ng>
  <mate-anchor-nav-section-ng title="Section 2">
    <p>Content 2</p>
  </mate-anchor-nav-section-ng>
</mate-anchor-nav-ng>