"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}
))}
); }