Skip to content
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
2 changes: 1 addition & 1 deletion pages/home/api-keys.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Steps, Tabs } from "nextra/components";
# Getting Your API Key


Before you begin, you'll need an Arcade account - if you haven't created one yet, you can [sign up here](https://api.arcade.dev/signup). Once you have an account, you can generate API keys through either our dashboard or CLI.
Before you begin, you'll need an Arcade account - if you haven't created one yet, you can [sign up here](https://api.arcade.dev/signup?utm_source=docs&utm_medium=page&utm_campaign=get-api-key). Once you have an account, you can generate API keys through either our dashboard or CLI.


<Tabs items={["Dashboard", "CLI"]}>
Expand Down
2 changes: 1 addition & 1 deletion pages/home/custom-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ First, make sure you have these pre-requisites installed on your system:

- **Python 3.10** or higher <br/> Verify your Python version by running `python --version` or `python3 --version` in your terminal.
- **pip**: The Python package installer should be available. It's typically included with Python.
- **Arcade Account**: Sign up for an [Arcade account](https://api.arcade.dev/signup) if you haven't already.
- **Arcade Account**: Sign up for an [Arcade account](https://api.arcade.dev/signup?utm_source=docs&utm_medium=page&utm_campaign=custom-tools) if you haven't already.

Let's set up Arcade and give it a try!

Expand Down
2 changes: 1 addition & 1 deletion pages/home/install/local.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Before you begin, make sure you have the following:

- **Python 3.10 or higher**
- **pip**: The Python package installer should be available. It's typically included with Python.
- **Arcade Account**: Sign up for an [Arcade account](https://api.arcade.dev/signup) if you haven't already.
- **Arcade Account**: Sign up for an [Arcade account](https://api.arcade.dev/signup?utm_source=docs&utm_medium=page&utm_campaign=local-install) if you haven't already.
- **Package Manager**: Either Brew (macOS) or Apt (linux) to install the engine binary.

Verify your Python version by running `python --version` or `python3 --version` in your terminal.
Expand Down
2 changes: 1 addition & 1 deletion pages/home/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Prerequisites } from "@components/pages/quickstart/Prerequisites/prereq

First, make sure you have these prerequisites installed on your system:

- **Arcade Account**: Sign up for an [Arcade account](https://api.arcade.dev/signup) if you haven't already.
- **Arcade Account**: Sign up for an [Arcade account](https://api.arcade.dev/signup?utm_source=docs&utm_medium=page&utm_campaign=quickstart) if you haven't already.

<Prerequisites />

Expand Down
12 changes: 9 additions & 3 deletions theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,15 @@ const config: DocsThemeConfig = {
navbar: {
extraContent: (
<>
<NavBarButton href="https://api.arcade.dev/signup"text="Sign Up" />
<NavBarButton href="https://api.arcade.dev/dashboard/playground/chat" text="Dashboard"
variant="outline" />
<NavBarButton
href="https://api.arcade.dev/signup?utm_source=docs&utm_medium=navbar&utm_campaign=signup"
text="Sign Up"
/>
<NavBarButton
href="https://api.arcade.dev/dashboard/playground/chat?utm_source=docs&utm_medium=navbar&utm_campaign=dashboard"
text="Dashboard"
variant="outline"
/>
</>
),
},
Expand Down