From c4e00539c2094f0136cab7b816b2f4b0b2403f7b Mon Sep 17 00:00:00 2001 From: Rae McKelvey <633012+okdistribute@users.noreply.github.com> Date: Sun, 12 Jul 2026 16:30:31 +0200 Subject: [PATCH 1/2] Update landing page quote to Dario / Rayfish Co-Authored-By: Claude Opus 4.8 (1M context) --- src/app/page.jsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/page.jsx b/src/app/page.jsx index a8a14065..5804c47c 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -116,16 +116,15 @@ export default function Page() {
-

“Doubling the network speed halves our compute budget.”

+

“Iroh let us drop zero-trust identity and connectivity straight into our app—we ripped out the old stuff and this is so much cleaner.”

-
Ari Lotter
+
Dario
-
Principal Engineer at Nous
- Read the Case Study +
Founder at Rayfish
From cd36f2dc69130020e4056cb6d2c176f4d9f1708e Mon Sep 17 00:00:00 2001 From: Rae McKelvey <633012+okdistribute@users.noreply.github.com> Date: Thu, 16 Jul 2026 14:51:10 -0700 Subject: [PATCH 2/2] add 3 quotes --- src/app/page.jsx | 53 ++++++++++++++++++++++++++++++++++-------------- 1 file changed, 38 insertions(+), 15 deletions(-) diff --git a/src/app/page.jsx b/src/app/page.jsx index 5804c47c..9aeea18e 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -38,6 +38,27 @@ const languages = [ { name: 'Go', logo: logoGo, href: 'https://docs.iroh.computer/languages/go' }, ]; +const quotes = [ + { + quote: 'Iroh is the magic behind our ability to facilitate millions of private backbones in minutes. Impossible with traditional networks.', + name: 'Drew Raines', + org: 'Head of Engineering at Datum', + logo: '/img/user-logos/datum.svg', + }, + { + quote: 'Doubling the network speed halves our compute budget.', + name: 'Ari Lotter', + org: 'Principal Engineer at Nous', + logo: '/img/user-logos/nous.png', + }, + { + quote: 'With iroh, every node is just a public key. We pool GPUs across clouds and closets into one mesh. No central server, no NAT config.', + name: 'Michael Neale', + org: 'Founder at Mesh LLM', + logo: '/img/user-logos/meshllm.svg', + }, +]; + const platforms = [ { name: 'Raspberry Pi', file: 'RaspberryPi', color: '#A22846' }, { name: 'Espressif', file: 'Espressif', color: '#E7352C' }, @@ -113,21 +134,23 @@ export default function Page() {
-
-
-
-

“Iroh let us drop zero-trust identity and connectivity straight into our app—we ripped out the old stuff and this is so much cleaner.”

-
-
-
-
Dario
- -
Founder at Rayfish
-
-
-
+
+
+ {quotes.map((q) => ( +
+
+

“{q.quote}”

+
+
+ +
+
{q.name}
+
{q.org}
+
+
+
+ ))} +