Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/introduction/how-it-works.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ Codegen performs advanced static analysis to build a rich graph representation o
[rustworkx](https://github.com/Qiskit/rustworkx) and has implemented most
language server features from scratch.
</Note>
<Info>
Codegen is open source. Check out the [source
code](https://github.com/codegen-sh/codegen-sdk) to learn more!
</Info>

## The Codebase Graph

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:
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:

```python
# Initialize and analyze the codebase
Expand Down Expand Up @@ -71,7 +75,7 @@ Currently, Codegen supports:

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.

## Join the Journey
## Build with us

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

Expand Down
3 changes: 1 addition & 2 deletions docs/tutorials/react-modernization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ title: "React Modernization"
sidebarTitle: "React Modernization"
icon: "react"
iconType: "brands"
description: "Modernize your React codebase with Codegen"
---

Codegen SDK provides powerful APIs for modernizing React codebases. This guide will walk you through common React modernization patterns.
This tutorial will demonstrate common React modernization patterns using Codegen.

Common use cases include:

Expand Down
Loading