---
title: Interstitial nav
description: >-
As your app grows, merchants need clear paths to deeper pages without
cluttering your main navigation. The interstitial nav composition provides a
clean way to link to settings, features, or resources within a section.
api_name: app-home
source_url:
html: 'https://shopify.dev/docs/api/app-home/patterns/compositions/interstitial-nav'
md: >-
https://shopify.dev/docs/api/app-home/patterns/compositions/interstitial-nav.md
---
# Interstitial nav
As your app grows, merchants need clear paths to deeper pages without cluttering your main navigation. The interstitial nav composition provides a clean way to link to settings, features, or resources within a section.
Use this pattern on pages that serve as hubs for related functionality, like a settings overview that links to individual settings pages. This composition follows proven design guidelines that help your app feel native to the Shopify admin. See [Built for Shopify requirements](https://shopify.dev/docs/apps/launch/built-for-shopify/requirements) for more details.
#### Use cases
* Linking to individual settings or configuration pages
* Connecting merchants to feature-specific sections
* Guiding to help documentation or integration resources
***
## Examples
### Display a navigation menu with drill-down rows
Merchants need clear paths to deeper pages (e.g. settings, features) without cluttering main navigation. This pattern displays a navigation menu with drill-down rows. [Clickable](https://shopify.dev/docs/api/app-home/web-components/actions/clickable) rows sit in a bordered [box](https://shopify.dev/docs/api/app-home/web-components/layout-and-structure/box). Each row uses the [icon](https://shopify.dev/docs/api/app-home/web-components/media-and-visuals/icon) with `name="chevron-right"` to indicate navigation.
##### jsx
```tsx
Customer support
Support settings, help resources, and customer service tools.
Products & catalog
Product defaults, customer experience, and catalog display options.
Shipping & fulfillment
Shipping methods, rates, zones, and fulfillment preferences.
```
##### html
```html
Customer support
Support settings, help resources, and customer service
tools.
Products & catalog
Product defaults, customer experience, and catalog display
options.
Shipping & fulfillment
Shipping methods, rates, zones, and fulfillment preferences.
```
***