Skip to content

Commit b2374cc

Browse files
committed
Update pages
1 parent ea94790 commit b2374cc

File tree

8 files changed

+21
-28
lines changed

8 files changed

+21
-28
lines changed

changelog.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ mode: "center"
1111
![AI Translations graphic](/images/changelog/translations.png)
1212
</Frame>
1313

14-
Translate all of your documentation with AI. [Learn more.](/core-concepts/navigation/localization)
14+
Translate all of your documentation with AI. [Learn more.](/core-concepts/navigation#localization)
1515

1616
## Export docs to PDF in beta
1717

1818
Export all of your documentation, a subdirectory, or a singe page as a PDF.
1919

2020
## React hook support
2121

22-
Bring interactivity to your docs. All standard React hooks are automatically available in your MDX files. [Learn more.](/core-concepts/styling/react-components)
22+
Bring interactivity to your docs. All standard React hooks are automatically available in your MDX files. [Learn more.](/core-concepts/react-components)
2323
</Update>
2424

2525
<Update label="March 2025">
@@ -85,7 +85,7 @@ mode: "center"
8585
![graphic with text "Themes v2"](/images/changelog/themes.png)
8686
</Frame>
8787

88-
New [pre-built themes](/core-concepts/styling/themes) to modify the look & feel of your docs. Configure via your [docs.json file](/core-concepts/settings).
88+
New [pre-built themes](/core-concepts/themes) to modify the look & feel of your docs. Configure via your [docs.json file](/core-concepts/settings).
8989

9090
Now available:
9191

@@ -96,7 +96,7 @@ mode: "center"
9696
## Other improvements
9797

9898
- [Guide to Technical Writing:](https://mintlify.com/guides/introduction)Best practices for writing technical documentation, including audience research, content types, and writing tips.
99-
- [Dropdown component](/core-concepts/navigation/divisions#dropdowns): Organize navigation with a dropdown, in addition to tabs and anchors.
99+
- [Dropdown component](/core-concepts/navigation#dropdowns): Organize navigation with a dropdown, in addition to tabs and anchors.
100100
- [AI syntax fixer](https://x.com/ricardonunez_io/status/1892334887644123192): The web editor will catch if there’s a parsing error and use AI to suggest fixes.
101101
</Update>
102102

core-concepts/styling/custom-css-js.mdx renamed to core-concepts/custom-scripts.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
2-
title: 'Custom CSS & JS'
2+
title: 'Custom Scripts'
33
description: 'Fully customize your documentation with custom CSS & JS'
4+
icon: "code"
45
---
56

67
Add custom CSS & JS to your documentation to fully customize the look and feel.

core-concepts/pages.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ title: "Introduction"
1616
---
1717
```
1818

19-
<Info>
20-
If you don't specify a title, it will be generated from the name of the file.
21-
</Info>
22-
2319
## Descriptions
2420

2521
You can add a description that shows the summary of the page under the title with the `description` metadata.

core-concepts/styling/react-components.mdx renamed to core-concepts/react-components.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "React Components"
33
description: "Learn how to use React components"
4+
icon: "react"
45
---
56

67
import { Counter } from "/snippets/counter.mdx";

core-concepts/settings.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This section contains the full reference for the docs.json file.
2121
<ResponseField name="theme" required>
2222
One of the following: `mint`, `maple`, `palm`, `willow`, `linden`, `almond`.
2323

24-
The layout theme of the project. Check out the [Themes](/core-concepts/styling/themes) page for more information.
24+
The layout theme of the project. Check out the [Themes](/core-concepts/themes) page for more information.
2525
</ResponseField>
2626

2727
<ResponseField name="name" type="string" required>
@@ -369,32 +369,32 @@ This section contains the full reference for the docs.json file.
369369
</Expandable>
370370
</ResponseField>
371371
<ResponseField name="languages" type="array of object">
372-
Organizing by [languages](/core-concepts/navigation/localization)
372+
Organizing by [languages](/core-concepts/navigation#localization)
373373

374374
</ResponseField>
375375
<ResponseField name="versions" type="array of object">
376-
Organizing by [versions](/core-concepts/navigation/versions)
376+
Organizing by [versions](/core-concepts/navigation#versions)
377377

378378
</ResponseField>
379379
<ResponseField name="tabs" type="array of object">
380-
Organizing by [tabs](/core-concepts/navigation/divisions#tabs)
380+
Organizing by [tabs](/core-concepts/navigation#divisions#tabs)
381381

382382
</ResponseField>
383383
<ResponseField name="anchors" type="array of object">
384-
Organizing by [anchors](/core-concepts/navigation/divisions#anchors)
384+
Organizing by [anchors](/core-concepts/navigation#divisions#anchors)
385385

386386
</ResponseField>
387387

388388
<ResponseField name="dropdowns" type="array of object">
389-
Organizing by [dropdowns](/core-concepts/navigation/divisions#dropdowns)
389+
Organizing by [dropdowns](/core-concepts/navigation#divisions#dropdowns)
390390

391391
</ResponseField>
392392
<ResponseField name="groups" type="array of object">
393-
Organizing by [groups](/core-concepts/navigation/pages#pages)
393+
Organizing by [groups](/core-concepts/navigation#pages#pages)
394394

395395
</ResponseField>
396396
<ResponseField name="pages" type="array of string or object">
397-
An array of [page paths or groups](/core-concepts/navigation/pages#groups)
397+
An array of [page paths or groups](/core-concepts/navigation#pages#groups)
398398

399399
</ResponseField>
400400

core-concepts/styling/themes.mdx renamed to core-concepts/themes.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Themes"
33
description: "Customize the appearance of your documentation"
4+
icon: "paint-bucket"
45
---
56

67
import { ThemeCard } from "/snippets/theme-card.mdx";

docs.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,9 @@
4141
"core-concepts/settings",
4242
"core-concepts/pages",
4343
"core-concepts/navigation",
44-
{
45-
"group": "Styling",
46-
"icon": "paint-bucket",
47-
"pages": [
48-
"core-concepts/styling/themes",
49-
"core-concepts/styling/react-components",
50-
"core-concepts/styling/custom-css-js"
51-
]
52-
},
44+
"core-concepts/themes",
45+
"core-concepts/react-components",
46+
"core-concepts/custom-scripts",
5347
"core-concepts/ai-ingestion"
5448
]
5549
},

quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ Enter your domain (e.g., docs.yourcompany.com) and follow the provided instructi
208208

209209
Congratulations! You've successfully deployed your documentation site with Mintlify. Here are some suggested next steps to enhance your documentation:
210210

211-
<Card title="Customize Your Theme" icon="paintbrush" href="/core-concepts/styling/themes" horizontal>
211+
<Card title="Customize Your Theme" icon="paintbrush" href="/core-concepts/themes" horizontal>
212212
Learn how to customize colors, fonts, and the overall appearance of your documentation site.
213213
</Card>
214-
<Card title="Organize Navigation" icon="map" href="/core-concepts/navigation/overview" horizontal>
214+
<Card title="Organize Navigation" icon="map" href="/core-concepts/navigation#overview" horizontal>
215215
Structure your documentation with intuitive navigation to help users find what they need.
216216
</Card>
217217
<Card title="Add Interactive Components" icon="puzzle" href="/components/accordions" horizontal>

0 commit comments

Comments
 (0)