import { RankSlope } from '@/components/ui/rank-slope'
export default function RankSlopeDemo() {
return (
<RankSlope
left="SWE-Bench Pro"
right="DeepSWE"
unit="%"
items={[
{ label: 'claude-opus-4.7', from: 64, to: 54, color: '#E8734A' },
{ label: 'gpt-5.5', from: 59, to: 70, color: '#10A37F' },
{ label: 'gpt-5.4', from: 58, to: 56, color: '#10A37F' },
{ label: 'claude-sonnet-4.6', from: 54, to: 32, color: '#E8734A' },
{ label: 'gpt-5.4-mini', from: 54, to: 24, color: '#10A37F' },
{ label: 'gemini-3.1-pro', from: 46, to: 10, color: '#4285F4' },
{ label: 'claude-haiku-4.5', from: 39, to: 0, color: '#E8734A' },
{ label: 'gemini-3-flash', from: 35, to: 5, color: '#4285F4' },
]}
/>
)
}