diff --git a/site/public/screenshots/account-signin.png b/site/public/screenshots/account-signin.png new file mode 100644 index 0000000..8324b04 Binary files /dev/null and b/site/public/screenshots/account-signin.png differ diff --git a/site/public/screenshots/apps.png b/site/public/screenshots/apps.png new file mode 100644 index 0000000..f58c5a5 Binary files /dev/null and b/site/public/screenshots/apps.png differ diff --git a/site/src/components/markdoc/GetStarted.astro b/site/src/components/markdoc/GetStarted.astro index ffdcc5a..bbd974a 100644 --- a/site/src/components/markdoc/GetStarted.astro +++ b/site/src/components/markdoc/GetStarted.astro @@ -11,6 +11,9 @@ const { macDmg, winSetup, hasWindows, versionLabel, releasesUrl, repoUrl } = const readmeUrl = `${repoUrl}#readme`; const M = `maximal`; +// Step screenshots are served from site/public/screenshots/ (base-prefixed for +// GitHub Pages), matching ShowTell's app-dashboard shot. +const shotBase = `${import.meta.env.BASE_URL.replace(/\/$/, "")}/screenshots`; const steps = [ { title: "Install maximal", @@ -21,10 +24,22 @@ const steps = [ { title: "Sign in with GitHub", body: "One click connects your existing GitHub Copilot subscription. No new account, no extra cost.", + shot: { + src: `${shotBase}/account-signin.png`, + alt: "maximal's Account panel showing 'Not signed in' with a Sign in to GitHub button.", + width: 2000, + height: 1065, + }, }, { title: "Pick your tools", - body: `Point Claude Code, Codex, opencode, or GitHub Copilot at ${M} and they run on your Copilot models. Switch anytime; no re-signing-in.`, + body: `Point Claude Code, Codex, opencode, or GitHub Copilot at ${M} and they run on your Copilot models.`, + shot: { + src: `${shotBase}/apps.png`, + alt: "maximal's Apps panel with one-click toggles for Claude Code and Claude Desktop pointed at the proxy.", + width: 2000, + height: 1175, + }, }, ]; --- @@ -46,6 +61,18 @@ const steps = [