export default function Testimonials() { // Replace or extend these with real quotes/metrics when available. const metrics = [ { title: "+38% faster TTFB", sub: "after Cloudflare tuning" }, { title: "DMARC p=reject", sub: "in 48 hours, spoofing blocked" }, { title: "7m 12s restore", sub: "backup drill to full recovery" }, ]; const quotes = [ { quote: "Our forms finally land in the inbox and the site is measurably faster. The before/after report made it an easy yes.", name: "Marketing Lead", company: "B2B Services SMB", }, { quote: "They implemented, tested, and documented everything in two days. We now have backups that actually restore.", name: "Founder", company: "E-commerce SME", }, ]; return (

Proof we deliver

{/* Metric badges */}
{metrics.map((m) => (

{m.title}

{m.sub}

))}
{/* Quotes */}
{quotes.map((q, i) => (
“{q.quote}”
— {q.name}, {q.company}
))}
); }