From 1a266db3dcab1bbf24b60bc359a24707e191c3c4 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:11:13 +0000 Subject: [PATCH 01/16] Updated mintlify pages - Updated create/code.mdx - Updated index.mdx - Updated customize/custom-domain.mdx - Updated create/text.mdx - Updated quickstart.mdx - Created untitled-page.mdx - Updated docs.json Mintlify-Source: dashboard-editor --- create/code.mdx | 32 ++++++++++----------- create/text.mdx | 48 +++++++++++++++++--------------- customize/custom-domain.mdx | 7 ++++- docs.json | 5 ++-- index.mdx | 55 ++++++++++++++++++------------------- quickstart.mdx | 10 +++++++ untitled-page.mdx | 3 ++ 7 files changed, 88 insertions(+), 72 deletions(-) create mode 100644 untitled-page.mdx diff --git a/create/code.mdx b/create/code.mdx index 8b9e5e6c15..22dee3bdc8 100644 --- a/create/code.mdx +++ b/create/code.mdx @@ -6,7 +6,7 @@ keywords: ["code blocks", "syntax highlighting", "code styling"] ## Add code samples -You can add inline code snippets or code blocks. Code blocks support meta options for syntax highlighting, titles, line highlighting, icons, and more. +_You can add inline code snippets or code blocks. Code blocks support meta options for syntax highlighting, titles, line highlighting, icons, and more._ ### Inline code @@ -143,7 +143,6 @@ class HelloWorld { } } ``` - ### Twoslash @@ -152,7 +151,7 @@ In JavaScript and TypeScript code blocks, use `twoslash` to enable interactive t -```ts twoslash Twoslash example +```ts Twoslash example twoslash type Pet = "cat" | "dog" | "hamster"; function adoptPet(name: string, type: Pet) { @@ -235,7 +234,7 @@ Highlight specific lines in your code blocks using `highlight` with the line num -```javascript Line highlighting example {1,2,5} +```javascript Line highlighting example highlight={1-2,5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -261,7 +260,7 @@ Focus on specific lines in your code blocks using `focus` with line numbers or r -```javascript Line focusing example focus=2,4,5 +```javascript Line focusing example focus={2,4-5} const greeting = "Hello, World!"; function sayHello() { console.log(greeting); @@ -454,9 +453,9 @@ Add `[!code ++]` or `[!code --]` inside a comment at the end of a line to mark i | Language | Added | Removed | | --- | --- | --- | -| JavaScript, TypeScript, Java, C, C++, Go, Rust | `// [!code ++]` | `// [!code --]` | +| JavaScript, TypeScript, Java, C, C\+\+, Go, Rust | `// [!code ++]` | `// [!code --]` | | Python, Ruby, Bash, YAML | `# [!code ++]` | `# [!code --]` | -| HTML, XML | `` | `` | +| HTML, XML | `{/* [!code ++] */}` | `{/* [!code --] */}` | | CSS | `/* [!code ++] */` | `/* [!code --] */` | | SQL, Lua | `-- [!code ++]` | `-- [!code --]` | @@ -478,8 +477,8 @@ sayHello(); ```python Python diff lines def greet(): - print("Hello, World!") # [!code --] - print("Hello, Mintlify!") # [!code ++] + print("Hello, World!") # [!code --] + print("Hello, Mintlify!") # [!code ++] greet() ``` @@ -498,8 +497,8 @@ sayHello(); ````text Python format ```python Python diff lines def greet(): - print("Hello, World!") # [!code --] - print("Hello, Mintlify!") # [!code ++] + print("Hello, World!") // [!code --] + print("Hello, Mintlify!") // [!code ++] greet() ``` @@ -522,8 +521,7 @@ Use the `` component in custom React components to programmatically r - The icon to display in the code block header. See [Icons](/components/icons) - for available options. + The icon to display in the code block header. See [Icons](/components/icons) for available options. @@ -539,13 +537,11 @@ Use the `` component in custom React components to programmatically r - The lines to highlight. Provide a stringified array of numbers. Example: - `"[1,3,4,5]"`. + The lines to highlight. Provide a stringified array of numbers. Example: `"[1,3,4,5]"`. - The lines to focus on. Provide a stringified array of numbers. Example: - `"[1,3,4,5]"`. + The lines to focus on. Provide a stringified array of numbers. Example: `"[1,3,4,5]"`. ### Example @@ -570,4 +566,4 @@ export const CustomCodeBlock = ({ ); }; -``` +``` \ No newline at end of file diff --git a/create/text.mdx b/create/text.mdx index 63e88b1642..df3e1ed3bb 100644 --- a/create/text.mdx +++ b/create/text.mdx @@ -1,16 +1,18 @@ --- title: "Format text" description: "Format text in your documentation with Markdown headings, bold, italic, links, blockquotes, and other inline styling options in MDX pages." -keywords: ["Markdown formatting", "text styling", "headings", "anchor links", "custom heading IDs"] +keywords: ["Markdown formatting", "text styling", "headers", "anchor links", "custom heading IDs"] --- ## Headings Headings organize your content and create navigation anchors. They appear in the table of contents and help users scan your documentation. -### Create headings +# 123 -Use `#` symbols to create headings of different levels: +### Create headings hello + +Use `#` symbols to create heaasdasddings of different levels:asd ```mdx ## Main section heading @@ -24,7 +26,7 @@ Use `##` (H2) through `######` (H6) for content sections. The title set in a pag Use descriptive, keyword-rich headings that clearly indicate the content that follows. This improves both user navigation and search engine optimization. -### Custom heading IDs +### Custom heading IDsasd By default, Mintlify generates anchor IDs automatically from heading text. You can override the generated ID with a custom one using the `{#custom-id}` syntax: @@ -69,9 +71,9 @@ Mintlify supports most Markdown formatting for emphasizing and styling text. Apply these formatting styles to your text: | Style | Syntax | Example | Result | -|-------|--------|---------|--------| +| --- | --- | --- | --- | | **Bold** | `**text**` | `**important note**` | **important note** | -| *Italic* | `_text_` | `_emphasis_` | *emphasis* | +| _Italic_ | `_text_` | `_emphasis_` | _emphasis_ | | ~~Strikethrough~~ | `~text~` | `~deprecated feature~` | ~~deprecated feature~~ | ### Combine formats @@ -84,16 +86,16 @@ You can combine formatting styles: *~~italic and strikethrough~~* ``` -**_bold and italic_**
-**~~bold and strikethrough~~**
-*~~italic and strikethrough~~* +**_bold and italic_**\ + **~~bold and strikethrough~~**\ + _~~italic and strikethrough~~_ ### Superscript and subscript For mathematical expressions or footnotes, use HTML tags: | Type | Syntax | Example | Result | -|------|--------|---------|--------| +| --- | --- | --- | --- | | Superscript | `text` | `example2` | example2 | | Subscript | `text` | `examplen` | examplen | @@ -110,9 +112,8 @@ Link to other pages in your documentation using root-relative paths. Omit the fi [Steps](/components/steps) ``` -[Quickstart](/quickstart)
-[Steps](/components/steps) - +[Quickstart](/quickstart)\ + [Steps](/components/steps) ### External links @@ -223,8 +224,8 @@ This line ends here.
This line starts on a new line. ``` -This line ends here.
-This line starts on a new line. +This line ends here.\ + This line starts on a new line. In most cases, paragraph breaks with blank lines provide better readability than manual line breaks. @@ -266,7 +267,7 @@ Use MDX-style comments to add notes, reminders, or to-dos in your source files. ``` - HTML-style `` comments are not supported in MDX. Always use `{/* ... */}`. + HTML-style `{/* ... */}` comments are not supported in MDX. Always use `{/* ... */}`. ## Escape special characters @@ -274,10 +275,10 @@ Use MDX-style comments to add notes, reminders, or to-dos in your source files. MDX treats `{` and `}` as the start and end of JSX expressions, and `<` as the start of a JSX tag. When you want these characters to render as literal text, escape them so MDX does not try to parse them. | Character | How to escape | -| :--- | :--- | -| `{` and `}` | Wrap the character in backticks (`` `{` ``), use the HTML entity (`{` for `{`, `}` for `}`), or write it inside a JSX expression as a string (`{'{'}`). | -| `<` | Wrap in backticks (`` `<` ``), use the HTML entity `<`, or write `{'<'}`. | -| `` ` `` | Use a backslash (`` \` ``). | +| :-- | :-- | +| `{` and `}` | Wrap the character in backticks (``{``), use the HTML entity (`{` for `{`, `}` for `}`), or write it inside a JSX expression as a string (`{'{'}`). | +| `<` | Wrap in backticks (``<``), use the HTML entity `<`, or write `{'<'}`. | +| ``` | Use a backslash (`\``). | | `\` | Use a double backslash (`\\`). | ```mdx Escape examples @@ -288,21 +289,24 @@ The placeholder {name} renders as literal curly braces. In JSX, write {'{ key: value }'} to display a literal object. ``` -Inside fenced code blocks (```` ``` ````), MDX does not parse curly braces, so you can write `{variable}` directly without escaping. Escaping is only required in regular prose and inside JSX attributes. +Inside fenced code blocks (`````), MDX does not parse curly braces, so you can write `{variable}` directly without escaping. Escaping is only required in regular prose and inside JSX attributes. ## Best practices ### Content organization + - Use headings to create clear content hierarchy - Follow proper heading hierarchy (don't skip from H2 to H4) - Write descriptive, keyword-rich heading text ### Text formatting + - Use bold for emphasis, not for entire paragraphs - Reserve italics for terms, titles, or subtle emphasis - Avoid over-formatting that distracts from content ### Links + - Write descriptive link text instead of "click here" or "read more" - Use root-relative paths for internal links -- Test links regularly to prevent broken references +- Test links regularly to prevent broken references \ No newline at end of file diff --git a/customize/custom-domain.mdx b/customize/custom-domain.mdx index eb5c05a2dd..c8ea9fcb86 100644 --- a/customize/custom-domain.mdx +++ b/customize/custom-domain.mdx @@ -4,7 +4,12 @@ description: "Host your documentation on a custom domain with DNS configuration, keywords: ["custom domain setup", "DNS configuration", "CNAME records", "TLS certificates"] --- + + Make chagnes in Editor. They appear in live site + + To host your documentation on a custom domain: + 1. Add your domain in your dashboard. 2. Configure DNS settings on your domain provider. 3. Allow time for DNS to propagate and TLS certificates to be automatically provisioned. @@ -140,4 +145,4 @@ Replace `https://www.your-custom-domain-here.com` with your actual custom domain "canonical": "https://docs.mintlify.com" } } -``` +``` \ No newline at end of file diff --git a/docs.json b/docs.json index a1f6f8fded..9f550a118f 100644 --- a/docs.json +++ b/docs.json @@ -30,7 +30,9 @@ "icon": "rocket", "boost": 2, "pages": [ + "untitled-page", "index", + "ai-native", "quickstart", { "group": "CLI", @@ -40,8 +42,7 @@ "cli/preview", "cli/commands" ] - }, - "ai-native" + } ] }, { diff --git a/index.mdx b/index.mdx index a1efde0bac..1708cbe73c 100644 --- a/index.mdx +++ b/index.mdx @@ -27,20 +27,32 @@ export const HeroCard = ({ filename, title, description, href }) => { ); }; +export const HeroCard = ({ filename, title, description, href }) => { + return ( + + + +

+ {title} +

+ {description} +
+ ); +}; + {/* vale Mintlify.Semicolons = YES */}
- Decorative background image. - Decorative background image. + Decorative background image. + + Decorative background image.
@@ -55,26 +67,11 @@ export const HeroCard = ({ filename, title, description, href }) => {
- + - + - +
-
+ \ No newline at end of file diff --git a/quickstart.mdx b/quickstart.mdx index 4fc7601ca7..8e54c048e0 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -9,6 +9,14 @@ import SkillMcpPrompt from "/snippets/skill-mcp-prompt.mdx"; After you complete this guide, you'll have a live documentation site ready to customize and update. +bruvvvvvv + +When I refresh the page, new content appears + + + This is a body + + ## Before you begin Mintlify uses a docs-as-code approach to manage your documentation. Every page on your site has a corresponding file stored in your documentation repository. @@ -27,6 +35,8 @@ When you connect your documentation repository to your project, you can work on Go to [mintlify.com/start](https://mintlify.com/start) and complete the onboarding process. During onboarding, you'll connect your GitHub account, create or select a repository for your documentation, and install the GitHub App to enable automatic deployments. +docs-as-code + After onboarding, your documentation site deploys and is accessible at your `.mintlify.site` URL. diff --git a/untitled-page.mdx b/untitled-page.mdx new file mode 100644 index 0000000000..69395e17af --- /dev/null +++ b/untitled-page.mdx @@ -0,0 +1,3 @@ +--- +title: "untitled-page" +--- \ No newline at end of file From 211c564202cd90f054a2a159852f60bc55342c2b Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:13:30 +0000 Subject: [PATCH 02/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 9f550a118f..b1870a29a6 100644 --- a/docs.json +++ b/docs.json @@ -30,9 +30,11 @@ "icon": "rocket", "boost": 2, "pages": [ + "untitled-page", "untitled-page", "index", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From 7585cb48221e414acc5b20f401f64d956953c4c5 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:14:59 +0000 Subject: [PATCH 03/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index b1870a29a6..10396fa21d 100644 --- a/docs.json +++ b/docs.json @@ -30,11 +30,13 @@ "icon": "rocket", "boost": 2, "pages": [ + "untitled-page", "untitled-page", "untitled-page", "index", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From 2b82af392fc37041b0eefa398c071e2b649227b8 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:18:58 +0000 Subject: [PATCH 04/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 10396fa21d..1c37c8bef0 100644 --- a/docs.json +++ b/docs.json @@ -33,10 +33,12 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From 78332ff0191460d56a06614397908186e3b1fa43 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:19:59 +0000 Subject: [PATCH 05/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 1c37c8bef0..35f262af24 100644 --- a/docs.json +++ b/docs.json @@ -34,11 +34,13 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From b95bd593f6558bd65f8fdbbe455def7b9f87325d Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:28:17 +0000 Subject: [PATCH 06/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 35f262af24..22f3764f82 100644 --- a/docs.json +++ b/docs.json @@ -35,12 +35,14 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From 5fe33d512732784c830ecffafa5e60763cfd7f2d Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:03:01 +0000 Subject: [PATCH 07/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 22f3764f82..94ce6e525a 100644 --- a/docs.json +++ b/docs.json @@ -36,6 +36,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -43,6 +44,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From 8407bf91d691fc2a4f1ceee678df957b93bb71e7 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:13:41 +0000 Subject: [PATCH 08/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 94ce6e525a..1f5c2facc5 100644 --- a/docs.json +++ b/docs.json @@ -37,6 +37,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -45,6 +46,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From 9bf64fd4428339a9deec3d798815e7ec1cbc968e Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:34:01 +0000 Subject: [PATCH 09/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 1f5c2facc5..60661649b9 100644 --- a/docs.json +++ b/docs.json @@ -38,6 +38,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -47,6 +48,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From beeb1526d7f0b77efbc8128a7bd5a178973de64c Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:34:40 +0000 Subject: [PATCH 10/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 60661649b9..ef74b2add9 100644 --- a/docs.json +++ b/docs.json @@ -39,6 +39,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -49,6 +50,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From e7aca0714dcc32a6429d94df3859dd5a2603f788 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:39:53 +0000 Subject: [PATCH 11/16] Updated mintlify pages - Updated untitled-page.mdx - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ untitled-page.mdx | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index ef74b2add9..9e67873da2 100644 --- a/docs.json +++ b/docs.json @@ -40,6 +40,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -51,6 +52,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", diff --git a/untitled-page.mdx b/untitled-page.mdx index 69395e17af..fb37118605 100644 --- a/untitled-page.mdx +++ b/untitled-page.mdx @@ -1,3 +1,7 @@ --- title: "untitled-page" ---- \ No newline at end of file +--- + + + Something + \ No newline at end of file From 5b7f9331138a09aeeb6df81e09a7f1828d479783 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:40:23 +0000 Subject: [PATCH 12/16] Updated mintlify pages - Updated untitled-page.mdx - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ untitled-page.mdx | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 9e67873da2..f1ce17816a 100644 --- a/docs.json +++ b/docs.json @@ -41,6 +41,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -53,6 +54,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", diff --git a/untitled-page.mdx b/untitled-page.mdx index fb37118605..fb421a9b60 100644 --- a/untitled-page.mdx +++ b/untitled-page.mdx @@ -3,5 +3,4 @@ title: "untitled-page" --- - Something \ No newline at end of file From 599b7b8160a4bf03e8885906dd9a43a87b862a5b Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:42:38 +0000 Subject: [PATCH 13/16] Updated mintlify pages - Updated untitled-page.mdx - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ untitled-page.mdx | 5 +---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs.json b/docs.json index f1ce17816a..9513ea8e55 100644 --- a/docs.json +++ b/docs.json @@ -42,6 +42,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -55,6 +56,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", diff --git a/untitled-page.mdx b/untitled-page.mdx index fb421a9b60..69395e17af 100644 --- a/untitled-page.mdx +++ b/untitled-page.mdx @@ -1,6 +1,3 @@ --- title: "untitled-page" ---- - - - \ No newline at end of file +--- \ No newline at end of file From ac3c2c8313326a3d0f34ca2f532c4385c95b69d7 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:01:52 +0000 Subject: [PATCH 14/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 9513ea8e55..df6ff1b999 100644 --- a/docs.json +++ b/docs.json @@ -43,6 +43,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -57,6 +58,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From b8ec143169cc7316d335554a56300dc0f24d6aab Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:02:32 +0000 Subject: [PATCH 15/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index df6ff1b999..9b038d79bc 100644 --- a/docs.json +++ b/docs.json @@ -44,6 +44,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -59,6 +60,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI", From a61c09392262e0d9c4b3deeefcdabd10efc7b5d2 Mon Sep 17 00:00:00 2001 From: "mintlify-development[bot]" <109878554+mintlify-development[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:07:45 +0000 Subject: [PATCH 16/16] Updated mintlify pages - Updated docs.json Mintlify-Source: dashboard-editor --- docs.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs.json b/docs.json index 9b038d79bc..e8f8187d88 100644 --- a/docs.json +++ b/docs.json @@ -45,6 +45,7 @@ "untitled-page", "untitled-page", "untitled-page", + "untitled-page", "index", "ai-native", "ai-native", @@ -61,6 +62,7 @@ "ai-native", "ai-native", "ai-native", + "ai-native", "quickstart", { "group": "CLI",