From efb0c1dccfd7ab315f2bb076130531d1b9bf3e0c Mon Sep 17 00:00:00 2001 From: Bohan Jiang <52446949+Bohan-J@users.noreply.github.com> Date: Thu, 16 Apr 2026 15:51:02 +0800 Subject: [PATCH] feat(agent): use official pi.dev wordmark for Pi runtime icon (#1153) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the placeholder Greek-letter π glyph with pi.dev's actual pixel-art "pi" wordmark on the brand's dark background. Source: https://pi.dev/logo.svg. --- .../runtimes/components/provider-logo.tsx | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/packages/views/runtimes/components/provider-logo.tsx b/packages/views/runtimes/components/provider-logo.tsx index 36d1d9c91..809b67c32 100644 --- a/packages/views/runtimes/components/provider-logo.tsx +++ b/packages/views/runtimes/components/provider-logo.tsx @@ -73,22 +73,17 @@ function HermesLogo({ className }: { className: string }) { ); } -// Pi — Greek letter π mark, styled in Pi brand teal +// Pi (pi.dev) — official pixel-art "pi" wordmark, sourced from pi.dev/logo.svg function PiLogo({ className }: { className: string }) { return ( - - - - π - + + + + ); }