const items = [ { quote: "The webinar on revocable living trusts was incredibly informative. I finally understand how to protect my assets and avoid probate.", name: "James Wilson", title: "Small Business Owner", role: "👨‍💼" }, { quote: "As a senior citizen, I was confused about healthcare directives. The instructor explained everything clearly and answered all my questions.", name: "Margaret Foster", title: "Retiree", role: "👵" }, { quote: "The tax planning webinar saved me thousands. I learned strategies I never knew existed. Worth every penny and more!", name: "Carlos Rodriguez", title: "Real Estate Investor", role: "🏢" }, ]; export default function Testimonials() { return (

⭐ Trusted by Thousands

Real feedback from people who transformed their financial future with us

{items.map((t) => (
{/* Gradient border effect */}
{/* Top accent */}
{/* Star rating */}
{[...Array(5)].map((_, i) => ( ))}
{/* Quote */}

"{t.quote}"

{/* Author */}
{t.role}
{t.name}
{t.title}
))}
{/* Trust metrics */}
15,000+
Students Graduated
4.9⭐
Average Rating
500+
Expert-Led Courses
); }