The basic NavLink component is composed relatively straightforwardly, with the `Nav` component at the top levels, and each link nested in a `Nav.Item`.

```
<Nav>
  <Nav.Item>
    <a href="/home">Home</a>
  </Nav.Item>
  <Nav.Item>
    <a href="/about">About</a>
  </Nav.Item>
  <Nav.Item>
    <a href="/contact">Contact</a>
  </Nav.Item>
  <Nav.Item>
    <a href="/contact">Contact</a>
  </Nav.Item>
</Nav>
```
