Skip to content

Commit d408d16

Browse files
committed
add more realistic cardgroup example, add links between card and cardgroup pages
1 parent 1241512 commit d408d16

File tree

3 files changed

+67
-33
lines changed

3 files changed

+67
-33
lines changed

fern/products/docs/pages/component-library/default-components/card-groups.mdx

Lines changed: 63 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,74 @@ title: 'Card Groups'
33
description: 'Show cards side by side in a grid format'
44
---
55

6-
The `CardGroup` component lets you organize multiple `Card` components in a responsive grid layout.
6+
The `CardGroup` component lets you organize multiple [`Card` components](/docs/writing-content/components/cards) in a responsive grid layout. You can use this component to organize related content like feature lists, navigation options, or step-by-step guides.
77

88
<Tabs>
99
<Tab title="Example">
10-
<CardGroup cols={2}>
11-
<Card title="First Card" icon="circle-1">
12-
This is the first card.
13-
</Card>
14-
<Card title="Second Card" icon="circle-2">
15-
This is the second card.
16-
</Card>
17-
<Card title="Third Card" icon="circle-3">
18-
This is the third card.
19-
</Card>
20-
<Card title="Fourth Card" icon="circle-4">
21-
This is the fourth and final card.
22-
</Card>
23-
</CardGroup>
10+
<CardGroup cols={2}>
11+
<Card
12+
title="Python"
13+
icon="brands python"
14+
href="/sdks/generators/python/quickstart"
15+
>
16+
Generate a Python SDK and publish to PyPi
17+
</Card>
18+
<Card
19+
title="PHP"
20+
icon="brands php"
21+
href="/sdks/generators/php/quickstart"
22+
>
23+
Generate a PHP SDK and publish to Packagist
24+
</Card>
25+
<Card
26+
title="Java SDK"
27+
icon="brands java"
28+
href="/sdks/generators/java/quickstart"
29+
>
30+
Generate a Java SDK and publish to Maven Central
31+
</Card>
32+
<Card
33+
title="Go SDK"
34+
icon="brands golang"
35+
href="/sdks/generators/go/quickstart"
36+
>
37+
Generate a Go SDK and publish as a module
38+
</Card>
39+
</CardGroup>
2440
</Tab>
2541
<Tab title="Markdown">
26-
```jsx
27-
<CardGroup cols={2}>
28-
<Card title="First Card" icon="circle-1">
29-
This is the first card.
30-
</Card>
31-
<Card title="Second Card" icon="circle-2">
32-
This is the second card.
33-
</Card>
34-
<Card title="Third Card" icon="circle-3">
35-
This is the third card.
36-
</Card>
37-
<Card title="Fourth Card" icon="circle-4">
38-
This is the fourth and final card.
39-
</Card>
40-
</CardGroup>
41-
```
42+
```jsx
43+
<CardGroup cols={2}>
44+
<Card
45+
title="Python"
46+
icon="brands python"
47+
href="/sdks/generators/python/quickstart"
48+
>
49+
Generate a Python SDK and publish to PyPi
50+
</Card>
51+
<Card
52+
title="PHP"
53+
icon="brands php"
54+
href="/sdks/generators/php/quickstart"
55+
>
56+
Generate a PHP SDK and publish to Packagist
57+
</Card>
58+
<Card
59+
title="Java SDK"
60+
icon="brands java"
61+
href="/sdks/generators/java/quickstart"
62+
>
63+
Generate a Java SDK and publish to Maven Central
64+
</Card>
65+
<Card
66+
title="Go SDK"
67+
icon="brands golang"
68+
href="/sdks/generators/go/quickstart"
69+
>
70+
Generate a Go SDK and publish as a module
71+
</Card>
72+
</CardGroup>
73+
```
4274
</Tab>
4375
</Tabs>
4476

fern/products/docs/pages/component-library/default-components/cards.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ title: 'Cards'
33
description: 'Use cards to display content in a box'
44
---
55

6-
Cards are container components that group related content and actions together. They provide a flexible way to present information with optional elements like icons, titles, and links in a visually distinct box.
6+
Cards are container components that group related content and actions together. They provide a flexible way to present information with optional elements like icons, titles, and links in a visually distinct box.
7+
8+
You can use individual cards or [use the `CardGroup` component](/docs/writing-content/components/card-groups) to arrange multiple cards in a responsive grid layout.
79

810

911
<Tabs>

fern/products/sdks/overview/java/changelog/2025-09-16.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## 3.5.0
22
**`(feat):`** Enhanced wire testing framework with comprehensive SDK validation capabilities. Wire tests now include
33
header validation from IR examples, multi-URL environment configuration support, complex type validation
4-
for unions/nullable/generic types, and full pagination testing with Iterable<T> support.
4+
for unions/nullable/generic types, and full pagination testing with `Iterable<T>` support.
55

66

77
## 3.4.1

0 commit comments

Comments
 (0)