The Hamburger Menu requires an import of both `Hamburger` and `Nav` components.

```
import { Hamburger, Nav } from 'towelify';
```

Then compose them together as follows:

```
<Nav>
  <Hamburger>
    <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>
  </Hamburger>
</Nav>
```
