Skip to content

Commit e9a245f

Browse files
Add documentation for new products navigation division (#1422)
* Update organize/navigation.mdx * Update organize/navigation.mdx --------- Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
1 parent cd6df01 commit e9a245f

File tree

1 file changed

+50
-1
lines changed

1 file changed

+50
-1
lines changed

organize/navigation.mdx

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,55 @@ In the `navigation` object, `dropdowns` is an array where each entry is an objec
319319
}
320320
```
321321

322+
## Products
323+
324+
Products create a dedicated navigation division for organizing product-specific documentation. Use products to separate different offerings, services, or major feature sets within your documentation.
325+
326+
In the `navigation` object, `products` is an array where each entry is an object that requires a `product` field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
327+
328+
```json
329+
{
330+
"navigation": {
331+
"products": [
332+
{
333+
"product": "Core API",
334+
"icon": "api",
335+
"groups": [
336+
{
337+
"group": "Getting started",
338+
"pages": [
339+
"core-api/quickstart",
340+
"core-api/authentication"
341+
]
342+
},
343+
{
344+
"group": "Endpoints",
345+
"pages": [
346+
"core-api/users",
347+
"core-api/orders"
348+
]
349+
}
350+
]
351+
},
352+
{
353+
"product": "Analytics Platform",
354+
"icon": "chart-bar",
355+
"pages": [
356+
"analytics/overview",
357+
"analytics/dashboard",
358+
"analytics/reports"
359+
]
360+
},
361+
{
362+
"product": "Mobile SDK",
363+
"icon": "smartphone",
364+
"href": "https://mobile-sdk-docs.example.com"
365+
}
366+
]
367+
}
368+
}
369+
```
370+
322371
## OpenAPI
323372

324373
Integrate OpenAPI specifications directly into your navigation structure to automatically generate API documentation. Create dedicated API sections or place endpoint pages within other navigation components.
@@ -463,7 +512,7 @@ For automated translations, [contact our sales team](mailto:[email protected]) to
463512

464513
## Nesting
465514

466-
You can use any combination of anchors, tabs, and dropdowns. The components can be nested within each other interchangeably to create your desired navigation structure.
515+
You can use any combination of anchors, tabs, dropdowns, and products. The components can be nested within each other interchangeably to create your desired navigation structure.
467516

468517
<CodeGroup>
469518

0 commit comments

Comments
 (0)