diff --git a/organize/navigation.mdx b/organize/navigation.mdx
index f94b015e8..bb0c77822 100644
--- a/organize/navigation.mdx
+++ b/organize/navigation.mdx
@@ -514,6 +514,10 @@ For automated translations, [contact our sales team](mailto:gtm@mintlify.com) to
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.
+
+Products are particularly useful for organizing documentation for multiple distinct offerings or services within a single documentation site.
+
+
```json Anchors
@@ -630,6 +634,48 @@ You can use any combination of anchors, tabs, dropdowns, and products. The compo
}
```
+```json Products
+{
+ "navigation": {
+ "products": [
+ {
+ "product": "Product 1",
+ "icon": "rocket",
+ "groups": [
+ {
+ "group": "Getting started",
+ "pages": [
+ "product-1/quickstart",
+ "product-1/setup"
+ ]
+ },
+ {
+ "group": "Features",
+ "pages": [
+ "product-1/feature-a",
+ "product-1/feature-b"
+ ]
+ }
+ ]
+ },
+ {
+ "product": "Product 2",
+ "icon": "chart-bar",
+ "groups": [
+ {
+ "group": "Getting started",
+ "pages": [
+ "product-2/overview",
+ "product-2/installation"
+ ]
+ }
+ ]
+ }
+ ]
+ }
+}
+```
+
## Breadcrumbs
diff --git a/organize/settings.mdx b/organize/settings.mdx
index 87fc5435d..1c19b3314 100644
--- a/organize/settings.mdx
+++ b/organize/settings.mdx
@@ -453,6 +453,25 @@ See [Themes](themes) for more information.
+
+
+ Product divisions for organizing product-specific documentation.
+
+
+
+ Display name of the product.
+
+ Minimum length: 1
+
+
+
+ Whether to hide this product by default.
+
+
+ URL or path for the product destination.
+
+
+
@@ -475,6 +494,10 @@ See [Themes](themes) for more information.
[Dropdowns](navigation#dropdowns) for grouping related content.
+
+
+ [Products](navigation#products) for organizing product-specific documentation.
+
[Groups](navigation#groups) for organizing content into sections.