"use client"; import React, { useState } from 'react'; import { Smartphone, Monitor, ChevronDown, ChevronRight, Copy, Check } from 'lucide-react'; import { cn } from '@/lib/utils'; export function MobileCookieInstructions() { const [open, setOpen] = useState(false); const [platform, setPlatform] = useState<'desktop' | 'android' | 'ios'>('desktop'); return (
{open && (
{platform === 'desktop' && (

Getting cookies on mobile is hard. The easiest way is to do it on a PC and send it to yourself.

  1. Install Cookie-Editor extension on your PC browser (Chrome/Edge).
  2. Go to labs.google (Whisk) or facebook.com (Meta) and login.
  3. Open extension → Click ExportExport as JSON.
  4. Paste into a Google Doc, Keep, Notes, or email it to yourself.
  5. Open on phone and paste here.
)} {platform === 'android' && (

Android allows extensions via specific browsers.

  1. Install Kiwi Browser or Firefox Nightly from Play Store.
  2. Open Kiwi/Firefox and install Cookie-Editor from Chrome Web Store.
  3. Login to the service (Whisk/Facebook).
  4. Tap menu → Cookie-Editor → Export JSON.
)} {platform === 'ios' && (

iPhone is restrictive. Syncing from Desktop is recommended.

Alternative: Use "Alook Browser" app (Paid) which acts like a desktop browser with developer tools.
  1. Use Method 1 (Desktop Sync) - it's much faster.
  2. Or access this site on your Mac/PC and configure it there first.Settings are saved to the browser, so this only works if you sync local storage or use the same device.
)}
)}
); }