Skip to content

Commit 7c4f37f

Browse files
author
codegen-bot
committed
more fixes
1 parent 47e748d commit 7c4f37f

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

docs/introduction/community.mdx

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,19 @@ icon: "people-group"
55
iconType: "solid"
66
---
77

8+
import {
9+
COMMUNITY_SLACK_URL,
10+
CODEGEN_SDK_GITHUB_URL,
11+
} from "/snippets/links.mdx";
12+
813
Join the growing Codegen community! We're excited to have you be part of our journey to make codebase manipulation and transformation more accessible.
914

1015
<CardGroup cols={2}>
11-
<Card
12-
title="Join our Slack"
13-
icon="slack"
14-
href="https://join.slack.com/t/codegen-community/shared_invite/..."
15-
>
16+
<Card title="Join our Slack" icon="slack" href={COMMUNITY_SLACK_URL}>
1617
Connect with the community, get help, and share your Codegen projects in our
1718
active Slack workspace.
1819
</Card>
19-
<Card
20-
title="GitHub"
21-
icon="github"
22-
href="https://github.com/codegen-sh/codegen-sdk"
23-
>
20+
<Card title="GitHub" icon="github" href={CODEGEN_SDK_GITHUB_URL}>
2421
Star us on GitHub, report issues, submit PRs, and contribute to the project.
2522
</Card>
2623
<Card title="Twitter (X)" icon="twitter" href="https://twitter.com/codegen">
@@ -43,7 +40,7 @@ Join the growing Codegen community! We're excited to have you be part of our jou
4340

4441
### Slack
4542

46-
Our Slack community is where you can:
43+
Our [Slack community](https://community.codegen.com) is where you can:
4744

4845
- Get help and support
4946
- Share your Codegen projects
@@ -52,7 +49,7 @@ Our Slack community is where you can:
5249

5350
### GitHub
5451

55-
Codegen is open source and we welcome contributions! On GitHub you can:
52+
Codegen is [open source](https://github.com/codegen-sh/codegen-sdk) and we welcome contributions! On GitHub you can:
5653

5754
- Report issues
5855
- Submit pull requests
@@ -61,7 +58,7 @@ Codegen is open source and we welcome contributions! On GitHub you can:
6158

6259
### Twitter (X)
6360

64-
Follow us on Twitter/X to:
61+
Follow us on [Twitter/X](https://x.com/codegen) to:
6562

6663
- Get the latest updates
6764
- See community highlights

docs/introduction/how-it-works.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ Codegen performs advanced static analysis to build a rich graph representation o
1414
[rustworkx](https://github.com/Qiskit/rustworkx) and has implemented most
1515
language server features from scratch.
1616
</Note>
17+
<Info>
18+
Codegen is open source. Check out the [source
19+
code](https://github.com/codegen-sh/codegen-sdk) to learn more!
20+
</Info>
1721

1822
## The Codebase Graph
1923

20-
At the heart of Codegen is a comprehensive graph representation of your code. When you initialize a `[Codebase](/codebase-sdk/core/codebase)`, it performs static analysis to construct a rich graph structure connecting code elements:
24+
At the heart of Codegen is a comprehensive graph representation of your code. When you initialize a [Codebase](/codebase-sdk/core/codebase), it performs static analysis to construct a rich graph structure connecting code elements:
2125

2226
```python
2327
# Initialize and analyze the codebase
@@ -71,7 +75,7 @@ Currently, Codegen supports:
7175

7276
We've started with these ecosystems but designed our architecture to be extensible. The graph-based approach provides a consistent interface across languages while handling language-specific details under the hood.
7377

74-
## Join the Journey
78+
## Build with Us
7579

7680
Codegen is just getting started, and we're excited about the possibilities ahead. We enthusiastically welcome contributions from the community, whether it's:
7781

@@ -82,4 +86,4 @@ Codegen is just getting started, and we're excited about the possibilities ahead
8286
- Adding new transformations
8387
- Improving documentation
8488

85-
Check out our [contribution guide](/contributing) to get involved!
89+
Check out our [community guide](/introduction/community) to get involved!

0 commit comments

Comments
 (0)