import { Avatar } from "@/registry/ui/avatar" import { Card } from "@/registry/ui/card" const quotes = [ { body: "We deleted the service that used to sit in front of the database. That was four thousand lines and one on-call rotation.", name: "Priya Raman", role: "Staff engineer, Northwind", initials: "PR", }, { body: "The row policies were the thing. Once they were written down in one place, the security review stopped being a two-week event.", name: "Tomas Ek", role: "CTO, Kestrel", initials: "TE", }, { body: "I expected to hit the wall in month three. We're eighteen months in and the wall keeps not being there.", name: "Dana Whitfield", role: "Founder, Fathom", initials: "DW", }, ] export default function TestimonialsGrid() { return (

Read it from someone else

Three teams who moved a production workload over and stayed.

{quotes.map((quote) => (

“{quote.body}”

{quote.name} {quote.role}
))}
) }