` sub-component.
-
-It requires a value for the `@icon` and `@ariaLabel` arguments:
-
-```handlebars
-
-
- <:header>
-
- <:logo>
-
-
- <:actions>
-
-
-
-
- {{! ... }}
-
-
-```
-
-It also accepts optional arguments, for example it’s possible to provide a custom color for the icon if needed:
-
-```handlebars
-
-
- <:header>
-
- <:logo>
-
-
- <:actions>
-
-
-
-
- {{!-- ... --}}
-
-
-```
-
-The HomeLink is built on top of the [`Hds::Interactive` component](/utilities/interactive), so it accepts all its routing arguments (eg. `@href`, `@route`, `@query`, `@model(s)`, etc.).
-
-Refer to the [Component API section](/components/app-sidenav?tab=code#sidenavheaderhomelink) for details.
-
-##### Actions
-
-This block is intended to contain top-level actionable elements like dropdowns and buttons.
-
-Here is an example of some possible actions:
-
-```handlebars
-
-
- <:header>
-
- <:logo>
-
-
- <:actions>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{! ... }}
-
-
-```
-
-Standard HDS [`Button`](/components/button) and [`Dropdown`](/components/dropdown) components can be used within the App Side Nav where needed. We recommend setting `enableCollisionDetection` to `true` for each Dropdown component used within the App Side Nav.
-
-You can also add custom elements to the `<:actions>` block, if these don’t cover your specific needs.
-
-!!! Info
-
-The “actions” block is automatically faded in/out whenever the App Side Nav transition between minimized/maximized states (see [Responsiveness](#responsiveness) below for details).
-
-!!!
-
#### Body (`<:body>`)
The `<:body>` block is where the actual navigation lives. It’s an agnostic container, in which consumers _in principle_ can add anything they want, in the order they want.
@@ -465,15 +348,12 @@ Here is an example of how the component could be used: