import styles from "./Testimonials.module.css"; // PH launch discussion thread for agentmemory — every testimonial in // this section is a verbatim quote from that thread. The live // upvote badge lives in at the top of the page. const PH_DISCUSSION_URL = "https://www.producthunt.com/p/agent-memory-dev/how-do-you-found-agentmemory-so-far-happy-to-help"; // "Use cases" — quotes that describe how a builder is using // agentmemory in production. Each one carries an explicit // `useCase` line so the framing is concrete (not just "I like it"). interface UseCase { name: string; useCase: string; quote: string; href: string; } const USE_CASES: UseCase[] = [ { name: "Peter Neyra", useCase: "Backfilled a month of Cursor transcripts", quote: "I backfilled agent memory on my past month's Cursor agent transcripts. It was surprisingly accurate. Picked up on things that I moved away from.", href: "https://www.producthunt.com/p/agent-memory-dev/how-do-you-found-agentmemory-so-far-happy-to-help?comment=5379518", }, { name: "Pranav Prakash", useCase: "Two weeks of production use", quote: "Been using it for 2 weeks, and I definitely see improvements.", href: PH_DISCUSSION_URL, }, ]; // "Endorsements" — shorter quotes that position the product, more // social-proof than use-case. Kept tight so the grid balances. interface Endorsement { name: string; quote: string; href: string; } const ENDORSEMENTS: Endorsement[] = [ { name: "Alper Tayfur", quote: "Tackles one of the biggest pain points with coding agents: losing useful project context across sessions without bloating the context window.", href: PH_DISCUSSION_URL, }, { name: "Mia Taylor", quote: "The focus on making memory actually useful for agents instead of just storing context endlessly.", href: PH_DISCUSSION_URL, }, { name: "Thomas Hall", quote: "Memory often becomes just more noise over time. Agentmemory feels more intentional compared to a lot of tools in this space.", href: PH_DISCUSSION_URL, }, { name: "Zoe Alexandra", quote: "Tried it briefly — feels clean and easy to get started with.", href: PH_DISCUSSION_URL, }, ]; export function Testimonials() { return (
BUILDERS USING AGENTMEMORY

IN THE WILD.

Verbatim from the Product Hunt launch thread. Each card links back to the source comment.

HOW THEY USE IT
{USE_CASES.map((u) => (
{u.useCase}

{u.quote}

{u.name} Product Hunt ↗
))}
WHAT THEY SAY
{ENDORSEMENTS.map((t) => (

{t.quote}

{t.name} Product Hunt ↗
))}
); }