Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits committed Jan 8, 2025
1 parent 88eea57 commit 4b786f4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
25 changes: 12 additions & 13 deletions website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,29 @@ function HomepageHeader() {
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>

<div className={styles.buttonWrapper}>
<Link
className="button button--secondary button--lg"
to="/docs/Getting-Started"
className={clsx(
"button button--secondary button--lg",
styles.buttonLink
)}
to="https://microsoft.github.io/autogen/stable/"
>
Get Started with 0.2
Get started with 0.4
</Link>
<p className={styles.buttonTagline}>
Legacy version of AutoGen (autogen-agentchat~=0.2)
The new event driven, asynchronous architecture for AutoGen
</p>
</div>
<div className={styles.buttonWrapper}>
<Link
className={clsx(
"button button--secondary button--lg",
styles.buttonLink
)}
to="https://microsoft.github.io/autogen/stable/user-guide/agentchat-user-guide/migration-guide.html"
className="button button--secondary button--lg"
to="/docs/Getting-Started"
>
Migration guide
Continue with 0.2
</Link>
<p className={styles.buttonTagline}>
Learn how to migrate from AutoGen 0.2 to 0.4
</p>
<p className={styles.buttonTagline}></p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
display: flex;
flex-direction: column;
align-items: center;
width: 200px;
width: 250px;
}

.buttonLink {
Expand Down

0 comments on commit 4b786f4

Please sign in to comment.