Skip to content

Commit 828e135

Browse files
authored
chore(web): fix docs links (#1427)
1 parent 6586cb2 commit 828e135

File tree

5 files changed

+11
-15
lines changed

5 files changed

+11
-15
lines changed

apps/beeai-web/src/constants.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
export const GITHUB_LINK = 'https://github.com/i-am-bee';
7-
8-
export const FRAMEWORK_DOCS_LINK = 'https://framework.beeai.dev';
6+
export const FRAMEWORK_DOCS_LINK = 'https://framework.beeai.dev/introduction/welcome';
97

10-
export const AGENT_STACK_DOCS_LINK = 'https://agentstack.beeai.dev';
8+
export const PLATFORM_DOCS_LINK = 'https://docs.beeai.dev/introduction/welcome';
119

12-
export const FRAMEWORK_INTRO_LINK = 'https://framework.beeai.dev/introduction/welcome';
13-
14-
export const PLATFORM_INTRO_LINK = 'https://agentstack.beeai.dev/introduction/welcome';
10+
export const GITHUB_LINK = 'https://github.com/i-am-bee';
1511

1612
export const DISCORD_LINK = 'https://discord.gg/NradeA6ZNF';
1713

apps/beeai-web/src/layouts/AppHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import clsx from 'clsx';
1010
import Link from 'next/link';
1111
import { useState } from 'react';
1212

13-
import { AGENT_STACK_DOCS_LINK, APP_NAME, FRAMEWORK_DOCS_LINK } from '@/constants';
13+
import { APP_NAME, FRAMEWORK_DOCS_LINK, PLATFORM_DOCS_LINK } from '@/constants';
1414
import { routeDefinitions } from '@/utils/router';
1515

1616
import classes from './AppHeader.module.scss';
@@ -66,7 +66,7 @@ const items = [
6666
},
6767
{
6868
label: 'Agent Stack Docs',
69-
href: AGENT_STACK_DOCS_LINK,
69+
href: PLATFORM_DOCS_LINK,
7070
Icon: ArrowUpRight,
7171
isExternal: true,
7272
},

apps/beeai-web/src/modules/blog/posts/introducing-agent-stack.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ straightforward:
7878
- **Repository**: [github.com/i-am-bee/agentstack](https://github.com/i-am-bee/agentstack)
7979
- **CLI**: agentstack prefix
8080
- **SDK**: [agentstack-sdk](https://pypi.org/project/agentstack-sdk/)
81-
- **Docs**: [agentstack.beeai.dev](https://agentstack.beeai.dev/)
81+
- **Docs**: [docs.beeai.dev](https://docs.beeai.dev/)
8282
- **Starter Template**: [github.com/i-am-bee/agentstack-starter](https://github.com/i-am-bee/agentstack-starter)
8383

8484
### For New Users
@@ -91,7 +91,7 @@ Get up and running in one line:
9191
sh -c "$(curl -LsSf https://raw.githubusercontent.com/i-am-bee/agentstack/HEAD/install.sh)"
9292
```
9393

94-
Then check out our [Quickstart Guide](https://agentstack.beeai.dev/introduction/quickstart).
94+
Then check out our [Quickstart Guide](https://docs.beeai.dev/introduction/quickstart).
9595

9696
## Migration Guide
9797

apps/beeai-web/src/modules/home/Framework.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Code, Constraint, FlowConnection, Plug, Shapes } from '@carbon/icons-re
88
import { Theme, useTheme } from '@i-am-bee/agentstack-ui';
99
import { useIsClient } from 'usehooks-ts';
1010

11-
import { FRAMEWORK_INTRO_LINK } from '@/constants';
11+
import { FRAMEWORK_DOCS_LINK } from '@/constants';
1212
import { LayoutContainer } from '@/layouts/LayoutContainer';
1313

1414
import FileConfigYaml from './assets/file-config-yaml.svg';
@@ -31,7 +31,7 @@ export function Framework() {
3131
<HeadlineWithLink
3232
title="BeeAI Framework"
3333
description="Build reliable, intelligent agents with our lightweight framework that goes beyond prompting and enforces rules."
34-
buttonProps={{ url: FRAMEWORK_INTRO_LINK }}
34+
buttonProps={{ url: FRAMEWORK_DOCS_LINK }}
3535
inverse
3636
/>
3737

apps/beeai-web/src/modules/home/Platform.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import { Deploy, Gui, IbmDeployableArchitecture, Unlocked } from '@carbon/icons-react';
88
import Image from 'next/image';
99

10-
import { PLATFORM_INTRO_LINK } from '@/constants';
10+
import { PLATFORM_DOCS_LINK } from '@/constants';
1111
import { LayoutContainer } from '@/layouts/LayoutContainer';
1212

1313
import screenshotsImage from './assets/platform.png';
@@ -26,7 +26,7 @@ export function Platform() {
2626
<HeadlineWithLink
2727
title="Agent Stack"
2828
description="Deploy and share agents with open infrastructure, free from framework or vendor lock-in."
29-
buttonProps={{ url: PLATFORM_INTRO_LINK }}
29+
buttonProps={{ url: PLATFORM_DOCS_LINK }}
3030
/>
3131
</div>
3232

0 commit comments

Comments
 (0)