Skip to content

Commit 47e748d

Browse files
author
codegen-bot
committed
.
1 parent b7f2bce commit 47e748d

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
lines changed

docs/introduction/about.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ We believe in the power of open source software. Our core library, [codegen](htt
6767
<Note>
6868
Want to learn more about what we're building? Check out our [getting started
6969
guide](/introduction/getting-started) or join our [community
70-
Slack](https://join.slack.com/t/codegen-community/shared_invite/...).
70+
Slack](https://community.codegen.com).
7171
</Note>

docs/introduction/faq.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ iconType: "solid"
2929
</Tip>
3030
</Accordion>
3131
<Accordion title="Can I use Codegen with my existing tools?" icon="screwdriver-wrench">
32-
Yes - [by design](3333/guiding-principles#python-first-composability).
32+
Yes - [by design](/introduction/guiding-principles#python-first-composability).
3333

3434
Codegen works like any other python package. It works alongside your IDE, version control system, and other development tools.
3535
</Accordion>
3636
<Accordion
3737
title="How can I contribute if I'm new to the project?"
3838
icon="hand-holding-heart"
3939
>
40-
Start by trying out Codegen, joining our Slack community, and looking for
41-
issues labeled "good first issue" on GitHub. We welcome contributions to
40+
Start by trying out Codegen, joining our [Slack community](https://community.codegen.com), and looking for
41+
issues labeled "good first issue" on [GitHub](https://github.com/codegen-sh/codegen-sdk). We welcome contributions to
4242
documentation, examples, and code improvements.
4343
</Accordion>
4444
<Accordion title="Is Codegen free to use?" icon="scale-balanced">
4545
Yes, Codegen is [open source](https://github.com/codegen-sh/codegen-sdk) and free to use under the [Apache 2.0
46-
license](https://github.com/codegen-sh/codegen-cli?tab=Apache-2.0-1-ov-file).
46+
license](https://github.com/codegen-sh/codegen-sdk?tab=Apache-2.0-1-ov-file).
4747
You can use it for both personal and commercial projects.
4848
</Accordion>
4949
<Accordion title="Where can I get help if I'm stuck?" icon="life-ring">

docs/introduction/overview.mdx

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ pip install codegen
5252

5353
## Get Started
5454

55+
import {
56+
COMMUNITY_SLACK_URL,
57+
CODEGEN_SDK_GITHUB_URL,
58+
} from "/snippets/links.mdx";
59+
5560
<CardGroup cols={2}>
5661
<Card
5762
title="Get Started"
@@ -63,18 +68,10 @@ pip install codegen
6368
<Card title="Tutorials" icon="diagram-project" href="/tutorials/at-a-glance">
6469
Learn how to use Codegen for common code transformation tasks.
6570
</Card>
66-
<Card
67-
title="View on GitHub"
68-
icon="github"
69-
href="https://github.com/codegen-sh/codegen-sdk"
70-
>
71+
<Card title="View on GitHub" icon="github" href={CODEGEN_SDK_GITHUB_URL}>
7172
Star us on GitHub and contribute to the project.
7273
</Card>
73-
<Card
74-
title="Join our Slack"
75-
icon="slack"
76-
href="https://join.slack.com/t/codegen-community/shared_invite/..."
77-
>
74+
<Card title="Join our Slack" icon="slack" href={COMMUNITY_SLACK_URL}>
7875
Get help and connect with the Codegen community.
7976
</Card>
8077
</CardGroup>

docs/snippets/links.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export const COMMUNITY_SLACK_URL = "https://community.codegen.com";
2+
3+
export const CODEGEN_SDK_GITHUB_URL =
4+
"https://github.com/codegen-sh/codegen-sdk";
5+
6+
export const CODEGEN_SDK_EXAMPLES_GITHUB_URL =
7+
"https://github.com/codegen-sh/codegen-examples";

0 commit comments

Comments
 (0)