diff --git a/web/app/testimonials.tsx b/web/app/testimonials.tsx index 539afe59..6b484a9a 100644 --- a/web/app/testimonials.tsx +++ b/web/app/testimonials.tsx @@ -41,11 +41,19 @@ export const testimonials = [ url: "https://news.ycombinator.com/item?id=47082577", platform: "hn" as const, }, + { + name: "afruth", + handle: "u/afruth", + avatar: null, + text: "I like it, ran it in the past day on three parallel projects each with several worktrees. Having this paired with lazygit and yazi / nvim made me a bit more productive than usual without having to chase multiple ghostty / iTerm instances. Also feels more natural than tmux.", + url: "https://www.reddit.com/r/ClaudeCode/comments/1r9g45u/comment/o6sxbr3/", + platform: "reddit" as const, + }, ]; export type Testimonial = (typeof testimonials)[number]; -export function PlatformIcon({ platform }: { platform: "x" | "hn" }) { +export function PlatformIcon({ platform }: { platform: "x" | "hn" | "reddit" }) { if (platform === "x") { return ( ); } + if (platform === "reddit") { + return ( + + + + ); + } return (