'use client'; type Stat = { label: string; value: string; sub?: string }; const STATS: Stat[] = [ { label: 'Sales territory', value: 'UAE', sub: 'YS Lootah Robotics' }, { label: 'Premier brands', value: '2', sub: 'Unitree · Pudu Robotics' }, { label: 'Robot models', value: '11+', sub: 'Humanoid, quadruped, service, delivery' }, { label: 'Based in', value: 'Dubai', sub: 'Showroom · demo · deployment' }, ]; export function FloatingTechPanel() { return (