Skip to content

Commit b96ffbb

Browse files
committed
Fix a lot of broken links
1 parent 5fa58bd commit b96ffbb

File tree

9 files changed

+39
-41
lines changed

9 files changed

+39
-41
lines changed

changelog.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mode: "center"
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.](/react-hooks)
22+
Bring interactivity to your docs. All standard React hooks are automatically available in your MDX files. [Learn more.](/core-concepts/styling/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](/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/styling/themes) to modify the look & feel of your docs. Configure via your [docs.json file](/core-concepts/settings).
8989

9090
Now available:
9191

@@ -175,7 +175,7 @@ mode: "center"
175175
<Update label="October 2024">
176176
## Changelogs
177177

178-
Launched a new [Update component](/content/components/update) to make it easier to display and report updates (like this one) to your users.
178+
Launched a new [Update component](/components/update) to make it easier to display and report updates (like this one) to your users.
179179

180180
<Frame>
181181
![Changelog](/images/changelog/changelog.jpg)
@@ -263,7 +263,7 @@ mode: "center"
263263

264264
## Images in Card components
265265

266-
Add an `img` property to a card to display an image on the top of the card. Learn more about it [here](/content/components/cards#image-card).
266+
Add an `img` property to a card to display an image on the top of the card. Learn more about it [here](/components/cards#image-card).
267267

268268
## Update Speed Performances
269269

@@ -398,7 +398,7 @@ mode: "center"
398398
- Add full-screen videos or image galleries
399399
- Embed custom iFrame demo elements to add intractability to your docs
400400

401-
Check out our [Custom Mode docs](/page#custom-mode).
401+
Check out our [Custom Mode docs](/core-concepts/page#custom-mode).
402402
</Update>
403403

404404
<Update label="March 2024">

components/accordions.mdx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ icon: "chevron-down"
4444
}
4545
```
4646

47-
Check out the [Accordion](/content/components/accordions) docs for all the supported props.
47+
Check out the [Accordion](/components/accordions) docs for all the supported props.
4848
</Accordion>
4949

5050
<Accordion title="FAQ with Icon" icon="alien-8bit">
51-
Check out the [Accordion](/content/components/accordions) docs for all the supported props.
51+
Check out the [Accordion](/components/accordions) docs for all the supported props.
5252
</Accordion>
5353

5454
<Accordion title="FAQ without Icon">
55-
Check out the [Accordion](/content/components/accordions) docs for all the supported props.
55+
Check out the [Accordion](/components/accordions) docs for all the supported props.
5656
</Accordion>
5757
</AccordionGroup>
5858
````
@@ -83,8 +83,6 @@ icon: "chevron-down"
8383
"brands"
8484
</ResponseField>
8585

86-
Use [AccordionGroup](/content/components/accordion-groups) to create a group of Accordions.
87-
8886
## Accordion Groups
8987

9088
You can group multiple accordions into a single display. Simply add `<AccordionGroup>` around your existing `<Accordion>` components.
@@ -101,15 +99,15 @@ You can group multiple accordions into a single display. Simply add `<AccordionG
10199
}
102100
```
103101

104-
Check out the [Accordion](/content/components/accordions) docs for all the supported props.
102+
Check out the [Accordion](/components/accordions) docs for all the supported props.
105103

106104
</Accordion>
107105

108106
<Accordion title="FAQ with Icon" icon="bot">
109-
Check out the [Accordion](/content/components/accordions) docs for all the supported props.
107+
Check out the [Accordion](/components/accordions) docs for all the supported props.
110108
</Accordion>
111109

112110
<Accordion title="FAQ without Icon">
113-
Check out the [Accordion](/content/components/accordions) docs for all the supported props.
111+
Check out the [Accordion](/components/accordions) docs for all the supported props.
114112
</Accordion>
115113
</AccordionGroup>

components/cards.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ description: "Highlight main points or links with customizable icons"
44
icon: 'square-mouse-pointer'
55
---
66

7-
<Card title="Card Title" icon="text" href="/content/components/card-groups">
7+
<Card title="Card Title" icon="text" href="/components/card-groups">
88
This is how you use a card with an icon and a link. Clicking on this card
99
brings you to the Card Group page.
1010
</Card>
1111

1212
<RequestExample>
1313
```jsx Card Example
14-
<Card title="Click on me" icon="text" href="/content/components/card-group">
14+
<Card title="Click on me" icon="text" href="/components/card-group">
1515
This is how you use a card with an icon and a link. Clicking on this card
1616
brings you to the Card Group page.
1717
</Card>
@@ -48,7 +48,7 @@ You can customize the CTA and whether or not to display the arrow on the card. B
4848
<Card
4949
title="Link card"
5050
icon="link"
51-
href="/content/components/card-groups"
51+
href="/components/card-groups"
5252
arrow="true"
5353
cta="Click here"
5454
>
@@ -61,7 +61,7 @@ You can customize the CTA and whether or not to display the arrow on the card. B
6161
<Card
6262
title="Link card"
6363
icon="link"
64-
href="/content/components/card-groups"
64+
href="/components/card-groups"
6565
arrow="true"
6666
cta="Click here"
6767
>

components/code-groups.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "The CodeGroup component lets you combine code blocks in a display
44
icon: 'group'
55
---
66

7-
You will need to make [Code Blocks](/content/components/code) then add the `<CodeGroup>` component around them. Every Code Block must have a filename because we use the names for the tab buttons.
7+
You will need to make [Code Blocks](/components/code) then add the `<CodeGroup>` component around them. Every Code Block must have a filename because we use the names for the tab buttons.
88

99
See below for an example of the end result.
1010

components/examples.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `<RequestExample>` and `<ResponseExample>` stick code blocks to the top-righ
1010

1111
## Request Example
1212

13-
The `<RequestExample>` component works similar to [CodeGroup](/content/components/code-groups), but displays the request content on the right sidebar. Thus, you can put multiple code blocks inside `<RequestExample>`.
13+
The `<RequestExample>` component works similar to [CodeGroup](/components/code-groups), but displays the request content on the right sidebar. Thus, you can put multiple code blocks inside `<RequestExample>`.
1414

1515
Please set a name on every code block you put inside RequestExample.
1616

core-concepts/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ sidebarTitle: "Short title"
6666
## Sidebar Icons
6767

6868
Want an icon for your sidebar item like the ones in
69-
[components](/content/components/accordions)? You can set an `icon` attribute in
69+
[components](/components/accordions)? You can set an `icon` attribute in
7070
the metadata! All icons from [Font Awesome](https://fontawesome.com/icons) and [Lucide](https://lucide.dev/icons) are
7171
available for us. You can also set an icon type for Font Awesome icons (optional). If not set, the icon
7272
type will be regular.

editor.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -160,17 +160,17 @@ Here are the types of content blocks available to add in the **"Visual Editor"**
160160

161161
<Accordion title="Mintlify components">
162162
<CardGroup cols={2}>
163-
<Card icon="circle-exclamation" href="/content/components/callouts" horizontal>Callouts</Card>
164-
<Card icon="square-caret-down" href="/content/components/accordions" horizontal>Accordions</Card>
165-
<Card icon="table-rows" href="/content/components/accordion-groups" horizontal>Accordion Group</Card>
166-
<Card icon="rectangle" href="/content/components/cards" horizontal>Cards</Card>
167-
<Card icon="rectangles-mixed" href="/content/components/card-groups" horizontal>Card Group</Card>
168-
<Card icon="code" href="/content/components/code" horizontal>Code Block</Card>
169-
<Card icon="rectangle-code" href="/content/components/code-groups" horizontal>Code Group</Card>
170-
<Card icon="window-restore" href="/content/components/tabs" horizontal>Tabs</Card>
171-
<Card icon="arrow-progress" href="/content/components/steps" horizontal>Steps</Card>
172-
<Card icon="frame" href="/content/components/frames" horizontal>Frames</Card>
173-
<Card icon="rectangle-history" href="/content/components/update" horizontal>Update</Card>
163+
<Card icon="circle-exclamation" href="/components/callouts" horizontal>Callouts</Card>
164+
<Card icon="square-caret-down" href="/components/accordions" horizontal>Accordions</Card>
165+
<Card icon="table-rows" href="/components/accordion-groups" horizontal>Accordion Group</Card>
166+
<Card icon="rectangle" href="/components/cards" horizontal>Cards</Card>
167+
<Card icon="rectangles-mixed" href="/components/card-groups" horizontal>Card Group</Card>
168+
<Card icon="code" href="/components/code" horizontal>Code Block</Card>
169+
<Card icon="rectangle-code" href="/components/code-groups" horizontal>Code Group</Card>
170+
<Card icon="window-restore" href="/components/tabs" horizontal>Tabs</Card>
171+
<Card icon="arrow-progress" href="/components/steps" horizontal>Steps</Card>
172+
<Card icon="frame" href="/components/frames" horizontal>Frames</Card>
173+
<Card icon="rectangle-history" href="/components/update" horizontal>Update</Card>
174174
</CardGroup>
175175
</Accordion>
176176
</AccordionGroup>

image-embeds.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For more information, we recommend the following sections:
7070
<Card
7171
title="Frame Component Reference"
7272
icon="frame"
73-
href="/content/components/frames"
73+
href="/components/frames"
7474
>
7575
Read the reference for the Frame component
7676
</Card>

quickstart.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,15 @@ Congratulations! You've successfully deployed your documentation site with Mintl
226226
If you encounter any issues during the setup process, check our common troubleshooting solutions:
227227

228228
<AccordionGroup>
229-
<Accordion title="Local preview not working">
230-
Make sure you have Node.js v19+ installed and that you're running the mintlify dev command from the directory containing your docs.json file.
231-
</Accordion>
232-
<Accordion title="Changes not reflecting on live site">
233-
Deployment typically takes 1-2 minutes. Check your GitHub Actions (for code-based workflow) or deployment logs in the Mintlify dashboard to ensure there are no build errors.
234-
</Accordion>
235-
<Accordion title="Custom domain not connecting">
236-
Verify that your DNS records are set up correctly and allow sufficient time for DNS propagation (up to 48 hours). You can use tools like DNSChecker to verify your CNAME record.
237-
</Accordion>
229+
<Accordion title="Local preview not working">
230+
Make sure you have Node.js v19+ installed and that you're running the `mintlify dev` command from the directory containing your `docs.json` file.
231+
</Accordion>
232+
<Accordion title="Changes not reflecting on live site">
233+
Deployment can take upwards to a few minutes. Check your GitHub Actions (for code-based workflow) or deployment logs in the Mintlify dashboard to ensure there are no build errors.
234+
</Accordion>
235+
<Accordion title="Custom domain not connecting">
236+
Verify that your DNS records are set up correctly and allow sufficient time for DNS propagation (up to 48 hours). You can use tools like [DNSChecker](https://dnschecker.org) to verify your CNAME record.
237+
</Accordion>
238238
</AccordionGroup>
239239

240240

0 commit comments

Comments
 (0)