diff --git a/es/organize/pages.mdx b/es/organize/pages.mdx
index f3929a2be..bc2228ac7 100644
--- a/es/organize/pages.mdx
+++ b/es/organize/pages.mdx
@@ -84,6 +84,22 @@ Usa el frontmatter para controlar:
Restringe la página a usuarios en grupos específicos. Los usuarios deben pertenecer a al menos uno de los grupos listados para acceder a la página. Primero debes configurar la [autenticación](/es/deploy/authentication-setup). Consulta [Controlar el acceso con grupos](/es/deploy/authentication-setup#control-access-with-groups) para más información.
+
+ Personaliza las páginas relacionadas que se muestran al final de la página. De forma predeterminada, Mintlify sugiere automáticamente páginas relacionadas en función del contenido de la página.
+
+ - Establece `false` para ocultar la sección de páginas relacionadas en esta página.
+ - Proporciona un arreglo de rutas o URL para sustituir las sugerencias automáticas por una lista curada. Cada entrada puede ser una ruta relativa, una URL absoluta o un mapeo `Título: ruta` para establecer un título de enlace personalizado.
+
+ ```yaml
+ ---
+ related:
+ - /es/api-playground/overview
+ - Título personalizado: /es/organize/navigation
+ - https://mintlify.com/blog
+ ---
+ ```
+
+
Cualquier frontmatter YAML válido. Por ejemplo, `product: "API"` o `version: "1.0.0"`.
diff --git a/fr/organize/pages.mdx b/fr/organize/pages.mdx
index c72de56ef..d241f64f1 100644
--- a/fr/organize/pages.mdx
+++ b/fr/organize/pages.mdx
@@ -84,6 +84,22 @@ Utilisez le frontmatter pour contrôler :
Restreint la page aux utilisateurs appartenant à des groupes spécifiques. Les utilisateurs doivent appartenir à au moins un des groupes listés pour accéder à la page. Vous devez d'abord configurer l'[authentification](/fr/deploy/authentication-setup). Voir [Contrôler l'accès avec des groupes](/fr/deploy/authentication-setup#control-access-with-groups) pour plus d'informations.
+
+ Personnalisez les pages connexes affichées en bas de la page. Par défaut, Mintlify suggère automatiquement des pages connexes en fonction du contenu de la page.
+
+ - Définissez `false` pour masquer la section des pages connexes sur cette page.
+ - Fournissez un tableau de chemins ou d'URL pour remplacer les suggestions automatiques par une liste sélectionnée. Chaque entrée peut être un chemin relatif, une URL absolue ou un mappage `Titre: chemin` pour définir un titre de lien personnalisé.
+
+ ```yaml
+ ---
+ related:
+ - /fr/api-playground/overview
+ - Titre personnalisé: /fr/organize/navigation
+ - https://mintlify.com/blog
+ ---
+ ```
+
+
Tout frontmatter YAML valide. Par exemple, `product: "API"` ou `version: "1.0.0"`.
diff --git a/organize/pages.mdx b/organize/pages.mdx
index cb4a86240..1cab13592 100644
--- a/organize/pages.mdx
+++ b/organize/pages.mdx
@@ -81,6 +81,22 @@ Use frontmatter to control:
Restrict the page to users in specific groups. Users must belong to at least one listed group to access the page. You must configure [authentication](/deploy/authentication-setup) first. See [Control access with groups](/deploy/authentication-setup#control-access-with-groups) for more information.
+
+ Customize the related pages shown at the bottom of the page. By default, Mintlify automatically suggests related pages based on the page content.
+
+ - Set to `false` to hide the related pages section on this page.
+ - Provide an array of paths or URLs to override the automatic suggestions with a curated list. Each entry can be a relative path, an absolute URL, or a `Title: path` mapping to set a custom link title.
+
+ ```yaml
+ ---
+ related:
+ - /api-playground/overview
+ - Custom title: /organize/navigation
+ - https://mintlify.com/blog
+ ---
+ ```
+
+
Any valid YAML frontmatter. For example, `product: "API"` or `version: "1.0.0"`.
diff --git a/zh/organize/pages.mdx b/zh/organize/pages.mdx
index 8fd0bcef1..bf3a86768 100644
--- a/zh/organize/pages.mdx
+++ b/zh/organize/pages.mdx
@@ -84,6 +84,22 @@ keywords: ["tags", "tag", "frontmatter", "metadata", "layout"]
将页面限制为特定组中的用户。用户必须属于至少一个列出的组才能访问该页面。你必须先配置[身份验证](/zh/deploy/authentication-setup)。详情参见[使用组控制访问](/zh/deploy/authentication-setup#control-access-with-groups)。
+
+ 自定义页面底部显示的相关页面。默认情况下,Mintlify 会根据页面内容自动推荐相关页面。
+
+ - 设为 `false` 可在该页面隐藏相关页面板块。
+ - 提供路径或 URL 数组,用一份精选列表覆盖自动推荐。每个条目可以是相对路径、绝对 URL,或使用 `标题: 路径` 的映射形式来设置自定义链接标题。
+
+ ```yaml
+ ---
+ related:
+ - /zh/api-playground/overview
+ - 自定义标题: /zh/organize/navigation
+ - https://mintlify.com/blog
+ ---
+ ```
+
+
任意有效的 YAML frontmatter。例如:`product: "API"` 或 `version: "1.0.0"`。