+
+Why a Docs Engine?
+
+__tl:dr;__ You write good [Markdown (MDX)](/markdown), and the rest is taken care of.
+
+__Details:__ Cloudflare has a large number of teams shipping product updates often. Most of these products have [their own documentation](https://developers.cloudflare.com/docs/). Over time we’ve found that it’s especially difficult to balance two important goals:
+
+1. Content is easily managed by the product team that owns it.
+2. Docs are consistent across products, providing the _best experience for our customers_, who commonly use more than one Cloudflare product together.
+
+The Docs Engine strives to solve these problems by providing smart defaults with minimal [configuration](/site-configuration) and a wide variety of [composable MDX components](/markdown).
+
+
+
+How does the main navigation work?
+
+The sidebar tree is automatically generated from the file structure inside the content directory (`src/content` by default, configurable with [`contentRepoFolder`](/reference/configuration#properties)).
+
+The link text is automatically determined by [the `title` of the page](/reference/pages#title), which by default comes from the first `h1` inside the document.
+
+
+
+How does the table of contents work?
+
+For pages with the [`"document"` type](/reference/pages#title) (the default), their table of contents is automatically generated from the header hierarchy. For this reason it’s critical that each document begin with an `h1` and that for all `N > 1`, all `h{N}` immediately follow an `h{N-1}`. For example an `h3` should never succeed an `h1`.
+
+
+
+
diff --git a/products/docs-engine/src/content/getting-started.md b/products/docs-engine/src/content/how-it-works.md
similarity index 57%
rename from products/docs-engine/src/content/getting-started.md
rename to products/docs-engine/src/content/how-it-works.md
index 66cee3841ea0e2..ec42e442a0b7d0 100644
--- a/products/docs-engine/src/content/getting-started.md
+++ b/products/docs-engine/src/content/how-it-works.md
@@ -2,27 +2,27 @@
order: 1
---
-# Getting started
+# How it works
-