diff --git a/components/expandables.mdx b/components/expandables.mdx
index 9f8f27902..16f20ab61 100644
--- a/components/expandables.mdx
+++ b/components/expandables.mdx
@@ -41,5 +41,9 @@ Use expandables to show and hide nested content within response fields. They are
- Set to `true` for the expandable to open when the page loads
+ Set to `true` for the expandable to open when the page loads.
+
+
+
+ Set to `true` to defer rendering the expandable's children until the user first opens it. Use this for pages with many expandable sections to improve initial load performance.
diff --git a/organize/navigation.mdx b/organize/navigation.mdx
index 16eaceaed..7eb8c8cf6 100644
--- a/organize/navigation.mdx
+++ b/organize/navigation.mdx
@@ -614,11 +614,13 @@ We currently support the following languages for localization:
-
-
+
+
+
+
@@ -630,13 +632,14 @@ We currently support the following languages for localization:
-
+
+
-
+
diff --git a/organize/pages.mdx b/organize/pages.mdx
index 311277c4c..141b643a6 100644
--- a/organize/pages.mdx
+++ b/organize/pages.mdx
@@ -65,6 +65,14 @@ Use frontmatter to control:
Set to `true` to display a "deprecated" label next to the page title. Use this to mark outdated content or legacy features while keeping the page accessible.
+
+ Set to `true` to hide the previous/next page navigation links at the bottom of the page. Use this for standalone pages that don't belong to a sequential reading flow.
+
+
+
+ Set to `true` to hide the API method badge (e.g., GET, POST) next to the page title in the sidebar. Use this for API pages where you want a cleaner sidebar appearance.
+
+
Any valid YAML frontmatter. For example, `product: "API"` or `version: "1.0.0"`.
@@ -210,3 +218,15 @@ timestamp: false
```
If you set `timestamp: true`, the page always shows the timestamp even if the global setting is `false`. If you set `timestamp: false`, the page hides the timestamp even if the global setting is `true`.
+
+### Manual dates
+
+You can manually set the last-updated and creation dates for a page with frontmatter fields. These override the automatically detected dates from your version control system.
+
+```yaml
+---
+title: "Page title"
+lastUpdatedDate: "2025-01-15"
+createdDate: "2024-06-01"
+---
+```