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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CARD_TITLE_CLASS, SECTION_H2_CLASS, SECTION_LEDE_CLASS } from "../typog
import { SITE_SECTION_CLASS, SITE_STANDARD_RAIL_CLASS } from "../layout";

const INSPECTOR_SRC =
"https://assets.rivet.dev/repo/website/src/components/marketing/images/screenshots/rivet-actor-inspector.png";
"https://assets.rivet.dev/website/marketing/screenshots/rivet-actors-inspector-state.png";

const features = [
{
Expand Down Expand Up @@ -64,9 +64,9 @@ export const ActorsObservabilitySection = () => (
<figure className="mt-12 overflow-hidden rounded-xl" data-site-reveal>
<img
src={INSPECTOR_SRC}
alt="Rivet Actor Inspector showing state, events, and callable actions for a running Actor"
width="2688"
height="2018"
alt="Rivet Actor Inspector showing the live state of a project Actor: build summary plus each pipeline step's status, attempts, and timing"
width="2944"
height="2202"
loading="lazy"
className="block h-auto w-full"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CARD_TITLE_CLASS, SECTION_H2_CLASS, SECTION_LEDE_CLASS } from "../typog
import { SITE_SECTION_CLASS, SITE_STANDARD_RAIL_CLASS } from "../layout";

const INSPECTOR_SRC =
"https://assets.rivet.dev/repo/website/src/components/marketing/images/screenshots/rivet-actor-inspector.png";
"https://assets.rivet.dev/website/marketing/screenshots/rivet-actors-inspector-state.png";

const features = [
{
Expand Down Expand Up @@ -55,9 +55,9 @@ export const EnterpriseObservabilitySection = () => (
<figure className="mt-12 overflow-hidden rounded-xl" data-site-reveal>
<img
src={INSPECTOR_SRC}
alt="Rivet dashboard showing state, events, and callable actions for a running Actor"
width="2688"
height="2018"
alt="Rivet dashboard showing the live state of a project Actor: build summary plus each pipeline step's status, attempts, and timing"
width="2944"
height="2202"
loading="lazy"
className="block h-auto w-full"
/>
Expand Down
8 changes: 4 additions & 4 deletions src/components/marketing/sections/ObservabilitySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { BODY_CLASS, CARD_TITLE_CLASS, SECTION_H2_CLASS } from "../typography";
import { SITE_SECTION_CLASS, SITE_STANDARD_RAIL_CLASS } from "../layout";

const inspectorSrc =
"https://assets.rivet.dev/repo/website/src/components/marketing/images/screenshots/rivet-actor-inspector.png";
"https://assets.rivet.dev/website/marketing/screenshots/rivet-actors-inspector-state.png";

const features = [
{
Expand Down Expand Up @@ -74,9 +74,9 @@ export const ObservabilitySection = () => (
>
<img
src={inspectorSrc}
alt="Rivet Actor Inspector"
width="2688"
height="2018"
alt="Rivet dashboard inspecting a project Actor built by an agent: live state with the build summary and each pipeline step's status, attempts, and timing"
width="2944"
height="2202"
loading="lazy"
decoding="async"
className="block h-auto w-full"
Expand Down
8 changes: 4 additions & 4 deletions src/pages/dynamic-apps.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const APPS_EXAMPLE_ROOT = 'https://github.com/rivet-dev/dynamic-apps/blob/main/e
const AI_BUILDER_EXAMPLE_URL =
'https://github.com/rivet-dev/dynamic-apps/tree/main/examples/apps-ai-builder';
const INSPECTOR_IMAGE =
'https://assets.rivet.dev/repo/website/src/components/marketing/images/screenshots/rivet-actor-inspector.png';
'https://assets.rivet.dev/website/marketing/screenshots/rivet-dynamic-apps-release.png';
const INSTALL_COMMAND = 'npm add @rivet-dev/dynamic-apps';

// Dynamic Apps snippets live in the agentOS repo (`snippetFrom: "agentos"`).
Expand Down Expand Up @@ -431,9 +431,9 @@ const compositionLayers = [
<figure class="mt-12 overflow-hidden rounded-xl" data-site-reveal>
<img
src={INSPECTOR_IMAGE}
alt="Rivet dashboard inspecting a deployed app, showing Actor state, events, and callable actions"
width="2688"
height="2018"
alt="Rivet dashboard inspecting an app release Actor: the active release, its publish history with content hashes, and the request counter"
width="2944"
height="2202"
loading="lazy"
class="block h-auto w-full"
/>
Expand Down
8 changes: 4 additions & 4 deletions src/pages/workflows.astro
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const ACTOR_EXAMPLE_ROOT =
const BUG_FIXER_SOURCE_URL_ROOT =
'https://github.com/rivet-dev/agentos/blob/main/examples/workflows';
const INSPECTOR_IMAGE =
'https://assets.rivet.dev/website/blog/2026-02-24-introducing-rivet-workflows/inspectorworkflow.png';
'https://assets.rivet.dev/website/marketing/screenshots/rivet-workflows-inspector.png';

const actorsRoot = requireDocsRoot('actors');
const workflowsProduct = getProduct('workflows');
Expand Down Expand Up @@ -343,9 +343,9 @@ const compositionLayers = [
<figure class="mt-12 overflow-hidden rounded-xl" data-site-reveal>
<img
src={INSPECTOR_IMAGE}
alt="Rivet workflow inspector showing a run history with nested steps, statuses, durations, and recorded details"
width="3808"
height="2338"
alt="Rivet workflow inspector showing a build pipeline run: plan, provision, checkpoint, write, verify, publish, and smoke-test steps with durations, and the publish step's recorded output"
width="2944"
height="2202"
loading="lazy"
class="block h-auto w-full"
/>
Expand Down
Loading