import React from 'react'; import { BarChart, Bar, XAxis, YAxis, Tooltip, ResponsiveContainer, Cell } from 'recharts'; const data = [ { name: 'SyncUsers', score: 82, color: '#ffffff' }, // White { name: 'Claude 3.7 Sonnet', score: 64, color: '#4b5563' }, // Gray-600 { name: 'Gemini 1.5 pro', score: 63, color: '#4b5563' }, { name: 'GPT-4o', score: 60, color: '#4b5563' }, { name: 'GPT-3.5 Turbo', score: 54, color: '#4b5563' }, ]; const Accuracy: React.FC = () => { return (
Accuracy

SyncUsers is 30% more accurate at predicting engagement than standard LLMs.

Success rate at picking winners from pairs of LinkedIn posts

{data.map((entry, index) => ( ))} {/* Def for gradient */}
{/* Custom Labels overlay for scores since Recharts labels are tricky with layout vertical sometimes */}
{/* Placeholder for accessibility */}
{/* Right 3D Visual */}
{/* Abstract 3D Bar representation */}
Λ
); }; export default Accuracy;