"use client"; import { Heading } from "./heading"; import { Subheading } from "./subheading"; export const CaseStudies = () => { const cases = [ { title: "B2B SaaS Scale-up", metric: "+45 Replies in 30 Days", description: "Using Clay-style enrichment to target high-intent founders in the UK market.", }, { title: "Professional Services Firm", metric: "12% Reply Rate, 8 Meetings", description: "Hyper-personalized outreach to Head of Growth roles at mid-market companies.", }, ]; return (
Proof of Concept Real results from our predictable outbound engine.
{cases.map((item, index) => (

{item.metric}

{item.title}

{item.description}

))}
); };