diff --git a/fern/products/docs/pages/navigation/frontmatter.mdx b/fern/products/docs/pages/navigation/frontmatter.mdx
index d46d355fa5..3a440100ee 100644
--- a/fern/products/docs/pages/navigation/frontmatter.mdx
+++ b/fern/products/docs/pages/navigation/frontmatter.mdx
@@ -280,6 +280,21 @@ hide-page-actions: true
```
+## Header
+
+ Hides the tabs row on this page, keeping the header bar (logo, search, and navbar links). Useful for a custom landing page that supplies its own navigation. Applies only when [`layout.tabs-placement`](/learn/docs/configuration/site-level-settings#layouttabs-placement) or [`theme.tabs.placement`](/learn/docs/configuration/site-level-settings#themetabsplacement) is `header`.
+
+
+
+```mdx
+---
+title: Landing Page
+layout: custom
+hide-header-tabs: true
+---
+```
+
+
## Page logo
Override the site-wide logo for a page. Specify different logos for light and dark modes using absolute URLs.
diff --git a/fern/products/docs/pages/navigation/site-level-settings.mdx b/fern/products/docs/pages/navigation/site-level-settings.mdx
index 7869127e8d..a668ba8b14 100644
--- a/fern/products/docs/pages/navigation/site-level-settings.mdx
+++ b/fern/products/docs/pages/navigation/site-level-settings.mdx
@@ -614,6 +614,8 @@ layout:
Set the placement of the tabs. Can be one of `header` or `sidebar`.
+ With `header`, individual pages can hide the tabs row using the [`hide-header-tabs` frontmatter](/learn/docs/configuration/page-level-settings#header), which suits a custom landing page that supplies its own navigation.
+
This setting is ignored when `disable-header` is set to true.