--- // Testimonials section: single marquee variant (m2 Plinth). // Two rows of testimonial cards scrolling in opposite directions on a // tinted graphite plinth. Data lives in site/data/testimonials.js and is // ordered for impact: both rows lead with the punchiest quotes. // // The Ben Davis card (tier: 'spotlight') gets a kinpaku gold gradient so // it commands attention even mid-row. import { testimonials, spotlight } from '../data/testimonials.js'; const initial = (handle) => (handle || '@?').replace('@', '').charAt(0).toUpperCase(); // All testimonials in curated order (spotlight first, then ordered by // impact). Splits roughly in half for the two marquee rows. const all = testimonials; const half = Math.ceil(all.length / 2); const rowA = all.slice(0, half); const rowB = all.slice(half); ---