Skip to content

Commit b0a5aa8

Browse files
authored
[Style Guide] Update links to Starlight docs (#20215)
1 parent 314b538 commit b0a5aa8

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

src/content/docs/style-guide/components/asides.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Asides
33
---
44

5-
Asides are a built-in component provided by [Starlight](https://starlight.astro.build/guides/components/#asides). Although there are more options, use only the ones below.
5+
Asides are a built-in component provided by [Starlight](https://starlight.astro.build/components/asides/). Although there are more options, use only the ones below.
66

77
## Note
88

src/content/docs/style-guide/components/badges.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Badges
44

55
import { Badge } from "~/components";
66

7-
Badges are a built-in component provided by [Starlight](https://starlight.astro.build/guides/components/#bades). Use them to indicate a product is in beta, for example.
7+
Badges are a built-in component provided by [Starlight](https://starlight.astro.build/components/badges/). Use them to indicate a product is in beta, for example.
88

99
## Component
1010

src/content/docs/style-guide/components/cards.mdx

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Cards
33
---
44

5-
Cards are a built-in component provided by [Starlight](https://starlight.astro.build/guides/components/#cards).
5+
Cards are a built-in component provided by [Starlight](https://starlight.astro.build/components/cards/).
66

77
## Cards
88

99
```mdx live
10-
import { Card } from '~/components';
10+
import { Card } from "~/components";
1111

1212
<Card title="Check this out" icon="puzzle">
13-
Interesting content you want to highlight.
13+
Interesting content you want to highlight.
1414
</Card>
1515
```
1616

@@ -20,22 +20,24 @@ import { Card } from '~/components';
2020
import { ListCard } from "~/components";
2121

2222
<ListCard title="Links" icon="puzzle">
23-
- foo
24-
- bar
25-
- baz
23+
24+
- foo
25+
- bar
26+
- baz
27+
2628
</ListCard>
2729
```
2830

2931
## Link title cards
3032

3133
```mdx live
32-
import { LinkTitleCard } from '~/components';
34+
import { LinkTitleCard } from "~/components";
3335

3436
<LinkTitleCard
35-
title="Check this out"
36-
icon="puzzle"
37-
href="/style-guide/components/cards/"
37+
title="Check this out"
38+
icon="puzzle"
39+
href="/style-guide/components/cards/"
3840
>
39-
Interesting content you want to highlight.
41+
Interesting content you want to highlight.
4042
</LinkTitleCard>
41-
```
43+
```

src/content/docs/style-guide/components/file-tree.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: File tree
33
---
44

5-
File tree is a built-in component provided by [Starlight](https://starlight.astro.build/guides/components/#file-tree).
5+
File tree is a built-in component provided by [Starlight](https://starlight.astro.build/components/file-tree/).
66

77
```mdx live
88
import { FileTree } from "~/components"
@@ -14,4 +14,4 @@ import { FileTree } from "~/components"
1414
- components
1515
- **file-tree.mdx**
1616
</FileTree>
17-
```
17+
```

0 commit comments

Comments
 (0)