From e076e81c18f6c266a2ea4cb03ba34259968a5503 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:07:12 +0000 Subject: [PATCH] Update components/case-studies.tsx --- components/case-studies.tsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 components/case-studies.tsx diff --git a/components/case-studies.tsx b/components/case-studies.tsx new file mode 100644 index 0000000..d9972e0 --- /dev/null +++ b/components/case-studies.tsx @@ -0,0 +1,36 @@ +"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}

+
+ ))} +
+
+ ); +};