Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 0.2 site for 0.4 #4942

Merged
merged 2 commits into from
Jan 9, 2025
Merged
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
6 changes: 3 additions & 3 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ customPostCssPlugin = () => {
};

module.exports = {
title: "AutoGen",
title: "AutoGen 0.2",
tagline: "An Open-Source Programming Framework for Agentic AI",
url: "https://microsoft.github.io",
baseUrl: "/autogen/0.2/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/ag.ico",
organizationName: "Microsoft", // Usually your GitHub org/user name.
projectName: "AutoGen", // Usually your repo name.
projectName: "AutoGen 0.2", // Usually your repo name.
scripts: [
{
src: "/autogen/js/custom.js",
Expand Down Expand Up @@ -187,7 +187,7 @@ module.exports = {
announcementBar: {
id: "newdocs",
content:
'Go <a href="/autogen/dev">here</a> to view the documentation for the work in progress version of AutoGen 0.4.',
'<a href="https://microsoft.github.io/autogen/stable/">AutoGen 0.4</a> has been released. Read the migration guide <a href="https://microsoft.github.io/autogen/stable/user-guide/agentchat-user-guide/migration-guide.html">here</a>.',
backgroundColor: "#fafbfc",
textColor: "#091E42",
isCloseable: true,
Expand Down
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
Get started with 0.4
</Link>
<p className={styles.buttonTagline}>
Current stable 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/dev/"
className="button button--secondary button--lg"
to="/docs/Getting-Started"
>
Preview v0.4
Continue with 0.2
</Link>
<p className={styles.buttonTagline}>
A new event driven, asynchronous architecture for AutoGen
</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
Loading