import React from 'react'; import { CheckCircle, Timer, Clock, ClipboardCheck, Smile, Gauge } from 'lucide-react'; const TrustedBy: React.FC = () => { const metrics = [ { icon: , category: "Task Success Rate", question: "Do users complete their goals?", outcome: "Identify drop-off points in critical flows." }, { icon: , category: "Time-on-Task", question: "How quickly do they finish?", outcome: "Benchmark efficiency against previous versions." }, { icon: , category: "Session Duration", question: "How long do they stay engaged?", outcome: "Balance retention with efficient task completion." }, { icon: , category: "System Usability Scale", question: "Is the product usable?", outcome: "Standardized scoring for overall usability." }, { icon: , category: "Customer Satisfaction", question: "Are users happy with the experience?", outcome: "Predict long-term retention and loyalty." }, { icon: , category: "Customer Effort Score", question: "Is it easy to get things done?", outcome: "Reduce friction to increase conversion." } ]; return (

Quantify your UX quality programmatically.

Developers use SyncUsers to predict performance on core metrics without waiting for live traffic data.

{/* UX Metrics Grid */}
{metrics.map((item, idx) => (
{item.icon} {item.category}
{item.question}

{item.outcome}

))}
{/* Stats Grid */}
{[ { value: "2,000+", label: "Persona Database ready", color: "border-blue-900" }, { value: "REST & GraphQL", label: "API Available", color: "border-teal-900" }, ].map((stat, idx) => (

{stat.value}

{stat.label}

))}
); }; export default TrustedBy;