import { Star, Quote } from "lucide-react"; import { motion } from "motion/react"; export default function Testimonials() { const reviews = [ { id: "review-1", name: "Liam Carter", role: "Product Architect, Apex Design Group", feedback: "Lumina Convert has been a lifesaver for our design team. We work with massive TIFF imagery & raw assets which used to stretch our client non-disclosure boundaries on web converters. Having a 100% offline local utility is incredibly powerful.", rating: 5, initials: "LC", gradient: "from-violet-500 to-indigo-500", }, { id: "review-2", name: "Elena Rostova", role: "Operations Director, LegalTrust Systems", feedback: "Under strict regulatory guidelines, our corporate contracts and depositions cannot traverse cloud platforms. Lumina solves our compliance headaches beautifully. The 100% offline GPU processing is unbelievably rapid.", rating: 5, initials: "ER", gradient: "from-indigo-500 to-sky-500", }, { id: "review-3", name: "James Thornton", role: "Senior Frontend Engineer, SynthTech", feedback: "I drop huge directory bundles of thousands of audio tracks and SVGs. Web converters crash or crawl. Lumina's standalone batch converting remains responsive, and the fact that it is 100% free with absolutely no hidden upgrades is phenomenal.", rating: 5, initials: "JT", gradient: "from-fuchsia-500 to-pink-500", }, ]; return (
{/* Header */}
User Testimonials

Trusted by creators &{" "} professionals

Read how small business managers, designers, and compliance teams protect their data with our local converters.

{/* Reviews grid */}
{reviews.map((review, i) => (
{/* Stars bar */}
{[...Array(review.rating)].map((_, index) => ( ))}

“{review.feedback}”

{review.initials}

{review.name}

{review.role}

))}
); }