diff --git a/README.md b/README.md index 1a816fa95..ef090ed1e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,11 @@

One interface for all your coding agents.

- Paseo app screenshot + Paseo app screenshot +

+ +

+ Paseo mobile app

--- @@ -59,8 +63,12 @@ npm run dev # run individual surfaces npm run dev:server npm run dev:app +npm run dev:desktop npm run dev:website +# build the daemon +npm run build:daemon + # repo-wide checks npm run typecheck ``` diff --git a/packages/website/public/hero-mockup.png b/packages/website/public/hero-mockup.png new file mode 100644 index 000000000..7437ffc93 Binary files /dev/null and b/packages/website/public/hero-mockup.png differ diff --git a/packages/website/public/mobile-mockup.png b/packages/website/public/mobile-mockup.png new file mode 100644 index 000000000..f3fb5866c Binary files /dev/null and b/packages/website/public/mobile-mockup.png differ diff --git a/packages/website/public/paseo-mockup.png b/packages/website/public/paseo-mockup.png deleted file mode 100644 index c5e4ad325..000000000 Binary files a/packages/website/public/paseo-mockup.png and /dev/null differ diff --git a/packages/website/src/components/landing-page.tsx b/packages/website/src/components/landing-page.tsx index 6987fcb51..b7e90a8d6 100644 --- a/packages/website/src/components/landing-page.tsx +++ b/packages/website/src/components/landing-page.tsx @@ -42,7 +42,7 @@ export function LandingPage({ title, subtitle }: LandingPageProps) { >
Paseo app showing agent management interface @@ -55,6 +55,7 @@ export function LandingPage({ title, subtitle }: LandingPageProps) {
+ @@ -1002,6 +1003,28 @@ done`, }, ]; +function MobileSection() { + return ( +
+
+

Mobile-first

+

+ The mobile app has full feature parity with desktop. Launch agents, review diffs, talk through problems with voice, all from your phone. +

+
+
+
+ Paseo mobile app screens +
+
+
+ ); +} + function CLISection() { const [activeIndex, setActiveIndex] = React.useState(0); const active = cliExamples[activeIndex];