From f322e9aaeff1a4dfb0a52cbcf4cd27bdd3909e68 Mon Sep 17 00:00:00 2001
From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
Date: Mon, 6 Oct 2025 16:51:19 -0700
Subject: [PATCH] add custom frontmatter
---
organize/pages.mdx | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/organize/pages.mdx b/organize/pages.mdx
index c99a2343e..afbd026bd 100644
--- a/organize/pages.mdx
+++ b/organize/pages.mdx
@@ -10,10 +10,13 @@ Each page is an MDX file, which combines Markdown content with React components
Every page starts with frontmatter, the YAML metadata enclosed by `---` at the beginning of a file. This metadata defines how your page appears and behaves.
-Use metadata to control:
+Use frontmatter to control:
- Page titles and descriptions
- Sidebar titles, icons, and tags
+- Page layouts
+- SEO meta tags
+- Custom metadata
The title of your page that appears in navigation and browser tabs.
@@ -47,6 +50,10 @@ Use metadata to control:
A tag that appears next to your page title in the sidebar.
+
+ Any valid YAML frontmatter. For example, `product: "API"` or `version: "1.0.0"`.
+
+
```yaml Example YAML frontmatter wrap
---
title: "About frontmatter"