From 1e8d4dee2d68ff43a98a331ca52e137d4cce7b7b Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 15:53:39 +0000 Subject: [PATCH] Update components/testimonials.tsx --- components/testimonials.tsx | 86 +++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 components/testimonials.tsx diff --git a/components/testimonials.tsx b/components/testimonials.tsx new file mode 100644 index 0000000..11d3770 --- /dev/null +++ b/components/testimonials.tsx @@ -0,0 +1,86 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardContent } from "@/components/ui/card"; +import { Quote, Star } from "lucide-react"; +import { motion } from "framer-motion"; + +const testimonials = [ + { + quote: "Alex transformed our growth strategy. We saw a 40% increase in MQLs within the first 3 months of working together.", + author: "Sarah Chen", + role: "CEO at TechFlow", + result: "+40% MQLs" + }, + { + quote: "The growth audit was eye-opening. We were wasting thousands on inefficient channels. Now our CAC is down by 25%.", + author: "Marcus Thorne", + role: "Founder of SaaSly", + result: "-25% CAC" + }, + { + quote: "Having Alex as a fractional partner is like having a secret weapon. The ROI has been incredible.", + author: "Elena Rodriguez", + role: "VP Marketing at ScaleUp", + result: "3.5x Revenue Growth" + } +]; + +export function Testimonials() { + return ( +
+
+ + +
+ + Proven Results + + Don't just take my word for it. Here's how I've helped other founders achieve their growth goals. + + +
+ +
+ {testimonials.map((t, i) => ( + + +
+ +
+ {[...Array(5)].map((_, i) => ( + + ))} +
+ +

"{t.quote}"

+
+
+

{t.author}

+

{t.role}

+
+
+ {t.result} +
+
+
+ + + ))} +
+ +
+ ); +}