@@ -7,6 +7,10 @@ import 'katex/dist/katex.min.css';
77import { RESEARCH_DATA } from './constants' ;
88import type { MetricPoint , ComparisonItem , ChatMessage } from './types' ;
99
10+ // Import comparison images
11+ import realWorldPatio from './assets/real-world-patio.png' ;
12+ import syntheticTrollet from './assets/synthetic-trollet.png' ;
13+
1014// Icons
1115const Icons = {
1216 PDF : ( ) => < svg className = "w-4 h-4" fill = "none" stroke = "currentColor" viewBox = "0 0 24 24" > < path strokeLinecap = "round" strokeLinejoin = "round" strokeWidth = { 2 } d = "M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" /> </ svg > ,
@@ -549,6 +553,36 @@ function App() {
549553 < InteractiveResults comparisons = { comparisons } />
550554 </ section >
551555
556+ { /* Qualitative Comparisons */ }
557+ < section className = "mb-20" >
558+ < h2 className = "font-serif text-3xl font-semibold mb-8 text-slate-900" > Qualitative Comparisons</ h2 >
559+ < div className = "grid grid-cols-1 md:grid-cols-2 gap-8" >
560+ { /* Real-world comparison */ }
561+ < div className = "bg-slate-50 rounded-2xl overflow-hidden border border-slate-200 shadow-sm" >
562+ < img
563+ src = { realWorldPatio }
564+ alt = "Comparison on real-world data"
565+ className = "w-full h-auto"
566+ />
567+ < div className = "p-4 text-center" >
568+ < p className = "text-sm font-medium text-slate-700" > Comparison on real-world data</ p >
569+ </ div >
570+ </ div >
571+
572+ { /* Synthetic comparison */ }
573+ < div className = "bg-slate-50 rounded-2xl overflow-hidden border border-slate-200 shadow-sm" >
574+ < img
575+ src = { syntheticTrollet }
576+ alt = "Comparison on synthetic data"
577+ className = "w-full h-auto"
578+ />
579+ < div className = "p-4 text-center" >
580+ < p className = "text-sm font-medium text-slate-700" > Comparison on synthetic data</ p >
581+ </ div >
582+ </ div >
583+ </ div >
584+ </ section >
585+
552586 { /* Metrics */ }
553587 < section className = "mb-20" >
554588 < h2 className = "font-serif text-3xl font-semibold mb-8 text-slate-900" > Quantitative Metrics</ h2 >
0 commit comments