// iOS.jsx — Simplified iOS 26 (Liquid Glass) device frame // Based on the iOS 26 UI Kit + Figma status bar spec. No assets, no deps. // Exports: IOSDevice, IOSStatusBar, IOSNavBar, IOSGlassPill, IOSList, IOSListRow, IOSKeyboard // ───────────────────────────────────────────────────────────── // Status bar // ───────────────────────────────────────────────────────────── function IOSStatusBar({ dark = false }) { const [time, setTime] = React.useState(() => { const now = new Date(); return now.getHours().toString().padStart(2,'0') + ':' + now.getMinutes().toString().padStart(2,'0'); }); React.useEffect(() => { const update = () => { const now = new Date(); setTime(now.getHours().toString().padStart(2,'0') + ':' + now.getMinutes().toString().padStart(2,'0')); }; const id = setInterval(update, 10000); return () => clearInterval(id); }, []); const c = dark ? '#fff' : '#000'; return (