export function isMobile() { if (typeof navigator === 'undefined') return false; return /Mobi|Android|iPhone|iPad/i.test(navigator.userAgent); }