From 2b47b316ee89b72c14d9a8605e7c102825a3e738 Mon Sep 17 00:00:00 2001 From: Echo Date: Sun, 15 Feb 2026 20:04:37 -0500 Subject: [PATCH 1/6] Website v2: marketing-focused redesign MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hero: new headline 'Stop ignoring your session replays' with animated terminal demo - Problem section: 'The Replay Graveyard' pain point cards - Solution section: three analysis levels with real output previews - Pipeline: reframed around value (Connect → Render → Analyze → Act) - Agent cards: rewritten copy (JSON-first, SKILL.md, durable artifacts, local-first) - Getting started: simplified with collapsible prerequisites - Animated terminal: auto-cycling tabs showing session/user/group analysis - Removed old static terminal showcase - Responsive for desktop and mobile Co-authored-by: Bryce Bjork --- website/app/page.tsx | 6 +- website/components/agent-cards.tsx | 30 +- website/components/animated-terminal.tsx | 365 +++++++++++++++++++++++ website/components/getting-started.tsx | 115 +++---- website/components/hero.tsx | 80 +---- website/components/pipeline.tsx | 33 +- website/components/problem.tsx | 52 ++++ website/components/solution.tsx | 113 +++++++ website/components/terminal.tsx | 91 ------ website/lib/terminal-content.ts | 177 ----------- 10 files changed, 633 insertions(+), 429 deletions(-) create mode 100644 website/components/animated-terminal.tsx create mode 100644 website/components/problem.tsx create mode 100644 website/components/solution.tsx delete mode 100644 website/components/terminal.tsx delete mode 100644 website/lib/terminal-content.ts diff --git a/website/app/page.tsx b/website/app/page.tsx index 93dd39b..88ef391 100644 --- a/website/app/page.tsx +++ b/website/app/page.tsx @@ -5,7 +5,8 @@ import { Hero } from "../components/hero"; import { Integrations } from "../components/integrations"; import { Nav } from "../components/nav"; import { Pipeline } from "../components/pipeline"; -import { TerminalShowcase } from "../components/terminal"; +import { Problem } from "../components/problem"; +import { Solution } from "../components/solution"; export default function Home() { return ( @@ -13,8 +14,9 @@ export default function Home() {