diff --git a/apps/docs-next/app/(home)/_components/hero-demo/widgets.tsx b/apps/docs-next/app/(home)/_components/hero-demo/widgets.tsx index b0662c05..cb4456e1 100644 --- a/apps/docs-next/app/(home)/_components/hero-demo/widgets.tsx +++ b/apps/docs-next/app/(home)/_components/hero-demo/widgets.tsx @@ -440,16 +440,39 @@ export function TerminalMirror() {
~/agentskit · ink · tty
● connected -
-         weather in tokyo this weekend{'\n'}
-         weather.get{'(...) '}600ms{'\n'}
-        ┌─ Tokyo · Sat Apr 18 ──────────┐{'\n'}
-        │ 72°  feels 70°       ☀        │{'\n'}
-        │ Sat  Sun  Mon  Tue  Wed       │{'\n'}
-        │ 72°  68°  64°  66°  70°       │{'\n'}
-        └───────────────────────────────┘{'\n'}
-        ▎ Sunny saturday, showers sun → mon.
-      
+
+
+ {' '} + weather in tokyo this weekend +
+
+ {' '} + weather.get + (...) + 600ms +
+
+
+ Tokyo · Sat Apr 18 + ☀ 72° · feels 70° +
+
+ {[ + ['Sat', '72°'], + ['Sun', '68°'], + ['Mon', '64°'], + ['Tue', '66°'], + ['Wed', '70°'], + ].map(([day, temp]) => ( +
+
{day}
+
{temp}
+
+ ))} +
+
+
▎ Sunny saturday, showers sun → mon.
+
same controller as browser · @agentskit/ink
diff --git a/apps/docs-next/app/(home)/_components/social-proof-bar.tsx b/apps/docs-next/app/(home)/_components/social-proof-bar.tsx index 21f59393..314e2bc4 100644 --- a/apps/docs-next/app/(home)/_components/social-proof-bar.tsx +++ b/apps/docs-next/app/(home)/_components/social-proof-bar.tsx @@ -32,7 +32,7 @@ function compact(n: number): string { async function fetchDownloads(pkg: string): Promise { try { const res = await fetch( - `https://api.npmjs.org/downloads/point/last-week/${encodeURIComponent(pkg)}`, + `https://api.npmjs.org/downloads/point/last-month/${encodeURIComponent(pkg)}`, ) if (!res.ok) return 0 const data: { downloads?: number } = await res.json() @@ -95,7 +95,7 @@ export function SocialProofBar() {