Skip to content

Commit b6312ee

Browse files
teallarsonclaudegithub-actions[bot]
authored
Fix architecture diagram light mode and responsiveness (#836)
* Fix architecture diagram for light mode and responsiveness Replace <picture> element with next/image components using dark:hidden/hidden dark:block pattern to properly respond to the site's theme toggle instead of OS-level prefers-color-scheme. Add max-w-full for responsive sizing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Regenerate clean markdown files --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2e574c9 commit b6312ee

2 files changed

Lines changed: 17 additions & 9 deletions

File tree

app/en/get-started/about-arcade/page.mdx

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description: "Learn how Arcade helps with auth and tool calling"
44
---
55

66
import { Tabs } from "nextra/components";
7+
import Image from "next/image";
78

89
# About Arcade
910

@@ -19,13 +20,20 @@ Without auth, AI agents are severely limited in what they can do.
1920

2021
Arcade provides an authorization system that handles OAuth 2.0, API keys, and user tokens needed by AI agents to access external services through tools. This means AI agents can now act on behalf of users securely and privately.
2122

22-
<picture>
23-
<source
24-
srcSet="/images/overview-dark.png"
25-
media="(prefers-color-scheme: dark)"
26-
></source>
27-
<img src="/images/overview-light.png" alt="Arcade architecture overview" />
28-
</picture>
23+
<Image
24+
alt="Arcade architecture overview"
25+
className="max-w-full dark:hidden mt-4"
26+
src="/images/overview-light.png"
27+
width={3112}
28+
height={1741}
29+
/>
30+
<Image
31+
alt="Arcade architecture overview"
32+
className="hidden max-w-full dark:block mt-4"
33+
src="/images/overview-dark.png"
34+
width={3112}
35+
height={1741}
36+
/>
2937

3038
With Arcade, developers can now create agents that can _act as the end users of their application_ to perform tasks like:
3139

public/_markdown/en/get-started/about-arcade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Without auth, AI are severely limited in what they can do.
1818

1919
Arcade provides an authorization system that handles OAuth 2.0, , and user tokens needed by AI to access external services through . This means AI agents can now act on behalf of securely and privately.
2020

21-
![Arcade architecture overview](/images/overview-light.png)
21+
![Arcade architecture overview](/_next/image?url=%2Fimages%2Foverview-light.png&w=3840&q=75) ![Arcade architecture overview](/_next/image?url=%2Fimages%2Foverview-dark.png&w=3840&q=75)
2222

2323
With Arcade, developers can now create that can _act as the end of their application_ to perform tasks like:
2424

@@ -74,7 +74,7 @@ const response = await client.tools.execute({
7474
console.log(response.output.value);
7575
```
7676

77-
Last updated on January 30, 2026
77+
Last updated on February 27, 2026
7878

7979
[Docs Home](/en/home.md)
8080
[Get an API key](/en/get-started/setup/api-keys.md)

0 commit comments

Comments
 (0)